Java org.xml.sax Attributes fields, constructors, methods, implement or subclass

Example usage for Java org.xml.sax Attributes fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.xml.sax Attributes.

The text is from its open source code.

Implementation

org.xml.sax.Attributes has the following implementations.
Click this link to see all its implementation.

Method

intgetIndex(String uri, String localName)
Look up the index of an attribute by Namespace name.
intgetIndex(String qName)
Look up the index of an attribute by XML qualified (prefixed) name.
intgetLength()
Return the number of attributes in the list.
StringgetLocalName(int index)
Look up an attribute's local name by index.
StringgetQName(int index)
Look up an attribute's XML qualified (prefixed) name by index.
StringgetType(int index)
Look up an attribute's type by index.
StringgetType(String qName)
Look up an attribute's type by XML qualified (prefixed) name.
StringgetURI(int index)
Look up an attribute's Namespace URI by index.
StringgetValue(int index)
Look up an attribute's value by index.
StringgetValue(String qName)
Look up an attribute's value by XML qualified (prefixed) name.
StringgetValue(String uri, String localName)
Look up an attribute's value by Namespace name.
StringtoString()
Returns a string representation of the object.