Package org.jaxen
Class QualifiedName
- java.lang.Object
-
- org.jaxen.QualifiedName
-
- All Implemented Interfaces:
java.io.Serializable
class QualifiedName extends java.lang.Object implements java.io.SerializableA local name (that matches the XML NCName production) and a namespace URI with which the local name is qualified.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringlocalNameprivate java.lang.StringnamespaceURIprivate static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description QualifiedName(java.lang.String namespaceURI, java.lang.String localName)Constructs a QualifiedName object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)(package private) java.lang.StringgetClarkForm()inthashCode()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
namespaceURI
private java.lang.String namespaceURI
-
localName
private java.lang.String localName
-
-
Constructor Detail
-
QualifiedName
QualifiedName(java.lang.String namespaceURI, java.lang.String localName)Constructs a QualifiedName object.- Parameters:
namespaceURI- namespace URI that qualifies the name, ornullfor default namespacelocalName- local name that is qualified by the namespace uri; must not benull
-
-