Class DOMReader.IndexedAttributeList
- java.lang.Object
-
- org.eclipse.persistence.internal.oxm.record.DOMReader.IndexedAttributeList
-
- All Implemented Interfaces:
org.xml.sax.Attributes
- Enclosing class:
- DOMReader
protected static final class DOMReader.IndexedAttributeList extends java.lang.Object implements org.xml.sax.AttributesImplementation of Attributes - used to pass along a given node's attributes to the startElement method of the reader's content handler.
-
-
Constructor Summary
Constructors Constructor Description IndexedAttributeList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAttribute(org.w3c.dom.Attr attribute)intgetIndex(java.lang.String qname)intgetIndex(java.lang.String uri, java.lang.String localName)intgetLength()java.lang.StringgetLocalName(int index)java.lang.StringgetQName(int index)java.lang.StringgetType(int index)java.lang.StringgetType(java.lang.String qname)java.lang.StringgetType(java.lang.String namespaceUri, java.lang.String localName)java.lang.StringgetURI(int index)java.lang.StringgetValue(int index)java.lang.StringgetValue(java.lang.String qname)java.lang.StringgetValue(java.lang.String uri, java.lang.String localName)
-
-
-
Method Detail
-
addAttribute
public void addAttribute(org.w3c.dom.Attr attribute)
-
getQName
public java.lang.String getQName(int index)
- Specified by:
getQNamein interfaceorg.xml.sax.Attributes
-
getType
public java.lang.String getType(java.lang.String namespaceUri, java.lang.String localName)- Specified by:
getTypein interfaceorg.xml.sax.Attributes
-
getType
public java.lang.String getType(int index)
- Specified by:
getTypein interfaceorg.xml.sax.Attributes
-
getType
public java.lang.String getType(java.lang.String qname)
- Specified by:
getTypein interfaceorg.xml.sax.Attributes
-
getIndex
public int getIndex(java.lang.String qname)
- Specified by:
getIndexin interfaceorg.xml.sax.Attributes
-
getIndex
public int getIndex(java.lang.String uri, java.lang.String localName)- Specified by:
getIndexin interfaceorg.xml.sax.Attributes
-
getLength
public int getLength()
- Specified by:
getLengthin interfaceorg.xml.sax.Attributes
-
getLocalName
public java.lang.String getLocalName(int index)
- Specified by:
getLocalNamein interfaceorg.xml.sax.Attributes
-
getURI
public java.lang.String getURI(int index)
- Specified by:
getURIin interfaceorg.xml.sax.Attributes
-
getValue
public java.lang.String getValue(int index)
- Specified by:
getValuein interfaceorg.xml.sax.Attributes
-
getValue
public java.lang.String getValue(java.lang.String qname)
- Specified by:
getValuein interfaceorg.xml.sax.Attributes
-
getValue
public java.lang.String getValue(java.lang.String uri, java.lang.String localName)- Specified by:
getValuein interfaceorg.xml.sax.Attributes
-
-