| java.lang.Object javax.xml.namespace.QName
QName | public class QName implements Serializable(Code) | | QName class represents the value of a qualified name as specified in XML Schema Part2: Datatypes specification.
The value of a QName contains a namespaceURI, a localPart and a prefix. The
localPart provides the local part of the qualified name. The namespaceURI is a URI reference
identifying the namespace.
version: 1.1 |
Method Summary | |
public boolean | equals(Object obj) Tests this QName for equality with another object.
If the given object is not a QName or is null then this method returns false.
For two QNames to be considered equal requires that both localPart and namespaceURI must be
equal. | public String | getLocalPart() Gets the local part for this QName. | public String | getNamespaceURI() Gets the namespace URI for this QName. | public String | getPrefix() Gets the prefix for this QName. | public int | hashCode() Returns a hash code value for this QName object. | public String | toString() Returns a string representation of this QName. | public static QName | valueOf(String s) Returns a QName holding the value of the specified String.
The string must be in the form returned by the QName.toString() method, i.e.
"{namespaceURI}localPart", with the "{namespaceURI}" part being optional.
This method doesn't do a full validation of the resulting QName. |
QName | public QName(String localPart)(Code) | | Constructor for the QName.
Parameters: localPart - local part of the QName |
QName | public QName(String namespaceURI, String localPart)(Code) | | Constructor for the QName.
Parameters: namespaceURI - namespace URI for the QName Parameters: localPart - local part of the QName. |
QName | public QName(String namespaceURI, String localPart, String prefix)(Code) | | Constructor for the QName.
Parameters: namespaceURI - Namespace URI for the QName Parameters: localPart - Local part of the QName. Parameters: prefix - Prefix of the QName. |
equals | public boolean equals(Object obj)(Code) | | Tests this QName for equality with another object.
If the given object is not a QName or is null then this method returns false.
For two QNames to be considered equal requires that both localPart and namespaceURI must be
equal. This method uses String.equals to check equality of localPart and
namespaceURI. Any class that extends QName is required to satisfy this equality contract.
This method satisfies the general contract of the Object.equals method.
Parameters: obj - the reference object with which to compare true if the given object is identical to this QName: false otherwise. |
getLocalPart | public String getLocalPart()(Code) | | Gets the local part for this QName.
the local part |
getNamespaceURI | public String getNamespaceURI()(Code) | | Gets the namespace URI for this QName.
namespace URI |
getPrefix | public String getPrefix()(Code) | | Gets the prefix for this QName.
the prefix |
hashCode | public int hashCode()(Code) | | Returns a hash code value for this QName object. The hash code is based on both the localPart
and namespaceURI parts of the QName. This method satisfies the general contract of the
Object.hashCode method.
a hash code value for this Qname object |
toString | public String toString()(Code) | | Returns a string representation of this QName.
a string representation of the QName |
valueOf | public static QName valueOf(String s)(Code) | | Returns a QName holding the value of the specified String.
The string must be in the form returned by the QName.toString() method, i.e.
"{namespaceURI}localPart", with the "{namespaceURI}" part being optional.
This method doesn't do a full validation of the resulting QName. In particular, it doesn't
check that the resulting namespace URI is a legal URI (per RFC 2396 and RFC 2732), nor that
the resulting local part is a legal NCName per the XML Namespaces specification.
Parameters: s - the string to be parsed QName corresponding to the given String throws: IllegalArgumentException - If the specified String cannot be parsed as a QName |
|
|