Package org.apache.axis2.saaj
Class PrefixedQName
- java.lang.Object
-
- org.apache.axis2.saaj.PrefixedQName
-
-
Constructor Summary
Constructors Constructor Description PrefixedQName(String uri, String localName, String prefix)
Constructor PrefixedQName.PrefixedQName(QName qname)
Constructor PrefixedQName
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getLocalName()
Gets the local name part of the XML name that thisName
object represents.String
getPrefix()
Returns the prefix associated with the namespace for the XML name that thisName
object represents.String
getQualifiedName()
Gets the namespace-qualified name of the XML name that thisName
object represents.String
getURI()
Returns the URI of the namespace for the XML name that thisName
object represents.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getLocalName
public String getLocalName()
Gets the local name part of the XML name that thisName
object represents.- Specified by:
getLocalName
in interfaceName
- Returns:
- Returns the local name.
-
getQualifiedName
public String getQualifiedName()
Gets the namespace-qualified name of the XML name that thisName
object represents.- Specified by:
getQualifiedName
in interfaceName
- Returns:
- Returns the namespace-qualified name.
-
getURI
public String getURI()
Returns the URI of the namespace for the XML name that thisName
object represents.
-
getPrefix
public String getPrefix()
Returns the prefix associated with the namespace for the XML name that thisName
object represents.
-
-