| java.lang.Object com.sun.xml.bind.v2.runtime.Name
Name | final public class Name implements Comparable<Name>(Code) | | The internal representation of an XML name.
This class keeps indicies for URI and local name for enabling faster processing.
Name s are ordered lexicographically (nsUri first, local name next.)
This is the same order required by canonical XML.
author: Kohsuke Kawaguchi |
Constructor Summary | |
| Name(int qNameIndex, int nsUriIndex, String nsUri, int localIndex, String localName, boolean isAttribute) |
isAttribute | final public boolean isAttribute(Code) | | Specifies if the Name is associated with an EII or AII
|
localName | final public String localName(Code) | | Local name. interned.
|
localNameIndex | final public short localNameIndex(Code) | | |
nsUri | final public String nsUri(Code) | | Namespace URI. interned.
|
nsUriIndex | final public short nsUriIndex(Code) | | Index -1 is reserved for representing the empty namespace URI of attributes.
|
qNameIndex | final public short qNameIndex(Code) | | Index of the Name for an EII or AII
|
Name | Name(int qNameIndex, int nsUriIndex, String nsUri, int localIndex, String localName, boolean isAttribute)(Code) | | |
|
|