public class NullAttributes extends Object implements Attributes
Modifier and Type | Field and Description |
---|---|
static NullAttributes |
singleton |
Constructor and Description |
---|
NullAttributes() |
Modifier and Type | Method and Description |
---|---|
int |
getIndex(String qName)
Look up an attribute's index by qualified (prefixed) name.
|
int |
getIndex(String uri,
String localName)
Look up an attribute's index by Namespace name.
|
int |
getLength()
Return the number of attributes in the list.
|
String |
getLocalName(int index)
Return an attribute's local name.
|
String |
getQName(int index)
Return an attribute's qualified (prefixed) name.
|
String |
getType(int index)
Return an attribute's type by index.
|
String |
getType(String qName)
Look up an attribute's type by qualified (prefixed) name.
|
String |
getType(String uri,
String localName)
Look up an attribute's type by Namespace-qualified name.
|
String |
getURI(int index)
Return an attribute's Namespace URI.
|
String |
getValue(int index)
Return an attribute's value by index.
|
String |
getValue(String qName)
Look up an attribute's value by qualified (prefixed) name.
|
String |
getValue(String uri,
String localName)
Look up an attribute's value by Namespace-qualified name.
|
public static final NullAttributes singleton
public int getLength()
getLength
in interface Attributes
Attributes.getLength()
public String getURI(int index)
getURI
in interface Attributes
index
- The attribute's index (zero-based).Attributes.getURI(int)
public String getLocalName(int index)
getLocalName
in interface Attributes
index
- The attribute's index (zero-based).Attributes.getLocalName(int)
public String getQName(int index)
getQName
in interface Attributes
index
- The attribute's index (zero-based).Attributes.getQName(int)
public String getType(int index)
getType
in interface Attributes
index
- The attribute's index (zero-based).Attributes.getType(int)
public String getValue(int index)
getValue
in interface Attributes
index
- The attribute's index (zero-based).Attributes.getValue(int)
public int getIndex(String uri, String localName)
In many cases, it will be more efficient to look up the name once and use the index query methods rather than using the name query methods repeatedly.
getIndex
in interface Attributes
uri
- The attribute's Namespace URI, or the empty
string if none is available.localName
- The attribute's local name.Attributes.getIndex(java.lang.String,java.lang.String)
public int getIndex(String qName)
getIndex
in interface Attributes
qName
- The qualified name.Attributes.getIndex(java.lang.String)
public String getType(String uri, String localName)
getType
in interface Attributes
uri
- The Namespace URI, or the empty string for a name
with no explicit Namespace URI.localName
- The local name.Attributes.getType(java.lang.String,java.lang.String)
public String getType(String qName)
getType
in interface Attributes
qName
- The qualified name.Attributes.getType(java.lang.String)
public String getValue(String uri, String localName)
getValue
in interface Attributes
uri
- The Namespace URI, or the empty string for a name
with no explicit Namespace URI.localName
- The local name.Attributes.getValue(java.lang.String,java.lang.String)
public String getValue(String qName)
getValue
in interface Attributes
qName
- The qualified name.Attributes.getValue(java.lang.String)
Copyright © The Apache Software Foundation. All Rights Reserved.