API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.xml.sax. Attributes View Source
Author(s)
David Megginson
Since
SAX 2.0
Version
2.0.1 (sax2r2)
Serial
Hierarchy
 Attributes
Subinterfaces
Description
public interface Attributes
  Interface for a list of XML attributes.
Methods
Hide/Show inherited methods
public int getIndex (String qName)
  Look up the index of an attribute by XML qualified (prefixed) name.
public int getIndex (String uri, String localName)
  Look up the index of an attribute by Namespace name.
public int getLength ()
  Return the number of attributes in the list.
public String getLocalName (int index)
  Look up an attribute's local name by index.
public String getQName (int index)
  Look up an attribute's XML qualified (prefixed) name by index.
public String getType (int index)
  Look up an attribute's type by index.
public String getType (String qName)
  Look up an attribute's type by XML qualified (prefixed) name.
public String getType (String uri, String localName)
  Look up an attribute's type by Namespace name.
public String getURI (int index)
  Look up an attribute's Namespace URI by index.
public String getValue (int index)
  Look up an attribute's value by index.
public String getValue (String qName)
  Look up an attribute's value by XML qualified (prefixed) name.
public String getValue (String uri, String localName)
  Look up an attribute's value by Namespace name.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar