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