|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface AttributeCollection
AttributeCollection represents the collection of attributes available on a particular element node. It is modelled on the SAX2 Attributes interface, but is extended firstly to work with Saxon NamePools, and secondly to provide type information as required by the XPath 2.0 data model.
Method Summary | |
---|---|
int |
getIndex(String uri,
String localname)
Get the index of an attribute (by name). |
int |
getIndexByFingerprint(int fingerprint)
Get the index, given the fingerprint |
int |
getLength()
Return the number of attributes in the list. |
int |
getLineNumber(int index)
Get the line number part of the location of an attribute, at a given index. |
String |
getLocalName(int index)
Get the local name of an attribute (by position). |
int |
getLocationId(int index)
Get the locationID of an attribute (by position) |
int |
getNameCode(int index)
Get the namecode of an attribute (by position). |
NodeName |
getNodeName(int index)
Get the node name of an attribute (by position) |
String |
getPrefix(int index)
Get the prefix of the name of an attribute (by position). |
int |
getProperties(int index)
Get the properties of an attribute (by position) |
String |
getQName(int index)
Get the lexical QName of an attribute (by position). |
String |
getSystemId(int index)
Get the systemId part of the location of an attribute, at a given index. |
SimpleType |
getTypeAnnotation(int index)
Get the type annotation of an attribute (by position). |
String |
getURI(int index)
Get the namespace URI of an attribute (by position). |
String |
getValue(int index)
Get the value of an attribute (by position). |
String |
getValue(String uri,
String localname)
Get the value of an attribute (by name). |
String |
getValueByFingerprint(int fingerprint)
Get the attribute value using its fingerprint |
boolean |
isId(int index)
Determine whether a given attribute has the is-ID property set |
boolean |
isIdref(int index)
Determine whether a given attribute has the is-idref property set |
Method Detail |
---|
int getLength()
NodeName getNodeName(int index)
index
- The position of the attribute in the list
int getNameCode(int index)
index
- The position of the attribute in the list.
SimpleType getTypeAnnotation(int index)
index
- The position of the attribute in the list.
int getLocationId(int index)
index
- The position of the attribute in the list.
LocationProvider
in order to obtain the
actual system identifier and line number of the relevant locationString getSystemId(int index)
Attribute location information is not available from a SAX parser, so this method is not useful for getting the location of an attribute in a source document. However, in a Saxon result document, the location information represents the location in the stylesheet of the instruction used to generate this attribute, which is useful for debugging.
index
- the required attribute
int getLineNumber(int index)
Attribute location information is not available from a SAX parser, so this method is not useful for getting the location of an attribute in a source document. However, in a Saxon result document, the location information represents the location in the stylesheet of the instruction used to generate this attribute, which is useful for debugging.
index
- the required attribute
int getProperties(int index)
index
- The position of the attribute in the list.
ReceiverOptions
. The
most interesting of these is {ReceiverOptions.DEFAULTED_ATTRIBUTE
,
which indicates an attribute that was added to an element as a result of schema validation.String getPrefix(int index)
index
- The position of the attribute in the list.
String getQName(int index)
index
- The position of the attribute in the list.
String getLocalName(int index)
index
- The position of the attribute in the list.
String getURI(int index)
index
- The position of the attribute in the list.
int getIndex(String uri, String localname)
uri
- The namespace uri of the attribute.localname
- The local name of the attribute.
int getIndexByFingerprint(int fingerprint)
String getValueByFingerprint(int fingerprint)
String getValue(String uri, String localname)
uri
- The namespace uri of the attribute.localname
- The local name of the attribute.
String getValue(int index)
index
- The position of the attribute in the list.
boolean isId(int index)
boolean isIdref(int index)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |