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

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

Introduction

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

The text is from its open source code.

Constructor

AttributesImpl()
Construct a new, empty AttributesImpl object.
AttributesImpl(Attributes atts)
Copy an existing Attributes object.

Method

voidaddAttribute(String uri, String localName, String qName, String type, String value)
Add an attribute to the end of the list.
voidclear()
Clear the attribute list for reuse.
intgetIndex(String qName)
Look up an attribute's index by qualified (prefixed) name.
intgetIndex(String uri, String localName)
Look up an attribute's index by Namespace name.
intgetLength()
Return the number of attributes in the list.
StringgetLocalName(int index)
Return an attribute's local name.
StringgetQName(int index)
Return an attribute's qualified (prefixed) name.
StringgetType(int index)
Return an attribute's type by index.
StringgetType(String qName)
Look up an attribute's type by qualified (prefixed) name.
StringgetURI(int index)
Return an attribute's Namespace URI.
StringgetValue(int index)
Return an attribute's value by index.
StringgetValue(String qName)
Look up an attribute's value by qualified (prefixed) name.
voidremoveAttribute(int index)
Remove an attribute from the list.
voidsetAttribute(int index, String uri, String localName, String qName, String type, String value)
Set an attribute in the list.
voidsetAttributes(Attributes atts)
Copy an entire Attributes object.
voidsetLocalName(int index, String localName)
Set the local name of a specific attribute.
voidsetValue(int index, String value)
Set the value of a specific attribute.