Package org.apache.xml.utils
Class AttList
- java.lang.Object
-
- org.apache.xml.utils.AttList
-
- All Implemented Interfaces:
org.xml.sax.Attributes
public class AttList extends java.lang.Object implements org.xml.sax.AttributesWraps a DOM attribute list in a SAX Attributes.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex(java.lang.String qName)Look up the index of an attribute by raw XML 1.0 name.intgetIndex(java.lang.String uri, java.lang.String localPart)Look up the index of an attribute by Namespace name.intgetLength()Get the number of attribute nodes in the listjava.lang.StringgetLocalName(int index)Look up an attribute's local name by index.java.lang.StringgetQName(int i)Look up an attribute's qualified name by index.java.lang.StringgetType(int i)Get the attribute's node type by indexjava.lang.StringgetType(java.lang.String name)Get the attribute's node type by namejava.lang.StringgetType(java.lang.String uri, java.lang.String localName)Look up an attribute's type by Namespace name.java.lang.StringgetURI(int index)Look up an attribute's Namespace URI by index.java.lang.StringgetValue(int i)Get the attribute's node value by indexjava.lang.StringgetValue(java.lang.String name)Look up an attribute's value by name.java.lang.StringgetValue(java.lang.String uri, java.lang.String localName)Look up an attribute's value by Namespace name.
-
-
-
Constructor Detail
-
AttList
public AttList(org.w3c.dom.NamedNodeMap attrs, DOMHelper dh)Constructor AttList- Parameters:
attrs- List of attributes this will containdh- DOMHelper
-
-
Method Detail
-
getLength
public int getLength()
Get the number of attribute nodes in the list- Specified by:
getLengthin interfaceorg.xml.sax.Attributes- Returns:
- number of attribute nodes
-
getURI
public java.lang.String getURI(int index)
Look up an attribute's Namespace URI by index.- Specified by:
getURIin interfaceorg.xml.sax.Attributes- Parameters:
index- The attribute index (zero-based).- Returns:
- The Namespace URI, or the empty string if none is available, or null if the index is out of range.
-
getLocalName
public java.lang.String getLocalName(int index)
Look up an attribute's local name by index.- Specified by:
getLocalNamein interfaceorg.xml.sax.Attributes- Parameters:
index- The attribute index (zero-based).- Returns:
- The local name, or the empty string if Namespace processing is not being performed, or null if the index is out of range.
-
getQName
public java.lang.String getQName(int i)
Look up an attribute's qualified name by index.- Specified by:
getQNamein interfaceorg.xml.sax.Attributes- Parameters:
i- The attribute index (zero-based).- Returns:
- The attribute's qualified name
-
getType
public java.lang.String getType(int i)
Get the attribute's node type by index- Specified by:
getTypein interfaceorg.xml.sax.Attributes- Parameters:
i- The attribute index (zero-based)- Returns:
- the attribute's node type
-
getValue
public java.lang.String getValue(int i)
Get the attribute's node value by index- Specified by:
getValuein interfaceorg.xml.sax.Attributes- Parameters:
i- The attribute index (zero-based)- Returns:
- the attribute's node value
-
getType
public java.lang.String getType(java.lang.String name)
Get the attribute's node type by name- Specified by:
getTypein interfaceorg.xml.sax.Attributes- Parameters:
name- Attribute name- Returns:
- the attribute's node type
-
getType
public java.lang.String getType(java.lang.String uri, java.lang.String localName)Look up an attribute's type by Namespace name.- Specified by:
getTypein interfaceorg.xml.sax.Attributes- Parameters:
uri- The Namespace URI, or the empty String if the name has no Namespace URI.localName- The local name of the attribute.- Returns:
- The attribute type as a string, or null if the attribute is not in the list or if Namespace processing is not being performed.
-
getValue
public java.lang.String getValue(java.lang.String name)
Look up an attribute's value by name.- Specified by:
getValuein interfaceorg.xml.sax.Attributes- Parameters:
name- The attribute node's name- Returns:
- The attribute node's value
-
getValue
public java.lang.String getValue(java.lang.String uri, java.lang.String localName)Look up an attribute's value by Namespace name.- Specified by:
getValuein interfaceorg.xml.sax.Attributes- Parameters:
uri- The Namespace URI, or the empty String if the name has no Namespace URI.localName- The local name of the attribute.- Returns:
- The attribute value as a string, or null if the attribute is not in the list.
-
getIndex
public int getIndex(java.lang.String uri, java.lang.String localPart)Look up the index of an attribute by Namespace name.- Specified by:
getIndexin interfaceorg.xml.sax.Attributes- Parameters:
uri- The Namespace URI, or the empty string if the name has no Namespace URI.localPart- The attribute's local name.- Returns:
- The index of the attribute, or -1 if it does not appear in the list.
-
getIndex
public int getIndex(java.lang.String qName)
Look up the index of an attribute by raw XML 1.0 name.- Specified by:
getIndexin interfaceorg.xml.sax.Attributes- Parameters:
qName- The qualified (prefixed) name.- Returns:
- The index of the attribute, or -1 if it does not appear in the list.
-
-