public interface Attributes:
Namespace-aware SAX2 attribute list.
Attribute values are valid only during the startElement callback that receives this object.
@example `klyn import org.xml.sax
attrs as Attributes = null if attrs is not null: print(attrs.getLength())
| Modifier and Type | Member | Description |
|---|---|---|
| public | getIndex | Returns the index for a qualified name. |
| public | getIndex | Returns the index for a Namespace URI and local name. |
| public | getLengthgetLength() as Int |
Returns the number of attributes. |
| public | getLocalName | Returns the local name at the given index. |
| public | getQName | Returns the qualified name at the given index. |
| public | getType | Returns the attribute type at the given index. |
| public | getType | Returns the type for a qualified name. |
| public | getType | Returns the type for a Namespace URI and local name. |
| public | getURI | Returns the Namespace URI at the given index. |
| public | getValue | Returns the attribute value at the given index. |
| public | getValue | Returns the value for a qualified name. |
| public | getValue | Returns the value for a Namespace URI and local name. |