Package net.sf.saxon.om
Class LargeAttributeMap
- java.lang.Object
-
- net.sf.saxon.om.LargeAttributeMap
-
- All Implemented Interfaces:
java.lang.Iterable<AttributeInfo>
,AttributeMap
public class LargeAttributeMap extends java.lang.Object implements AttributeMap
An implementation of AttributeMap suitable for larger collections of attributes (say, more than five). This provides direct access to an attribute by name, avoiding the cost of a sequential search. The map preserves the order of insertion of attributes: this is done by maintaining a doubly-linked list of attributes in insertion order (when an attribute is replaced by another with the same name, it currently occupies the position of the original; but this is not guaranteed).
-
-
Constructor Summary
Constructors Constructor Description LargeAttributeMap(java.util.List<AttributeInfo> atts)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.ArrayList<AttributeInfo>
asList()
Get the contents of the AttributeMap as a list ofAttributeInfo
objects.AttributeInfo
get(NamespaceUri uri, java.lang.String local)
Get the attribute with a given name, if it existsAttributeInfo
get(NodeName name)
Get the attribute with a given name, if it existsAttributeInfo
getByFingerprint(int fingerprint, NamePool namePool)
java.util.Iterator<AttributeInfo>
iterator()
AttributeMap
put(AttributeInfo att)
Replace or add an attribute, to create a new AttributeMapAttributeMap
remove(NodeName name)
Remove an existing attribute, to create a new AttributeMapint
size()
Return the number of attributes in the map.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Constructor Detail
-
LargeAttributeMap
public LargeAttributeMap(java.util.List<AttributeInfo> atts)
-
-
Method Detail
-
size
public int size()
Return the number of attributes in the map.- Specified by:
size
in interfaceAttributeMap
- Returns:
- The number of attributes in the map.
-
get
public AttributeInfo get(NodeName name)
Description copied from interface:AttributeMap
Get the attribute with a given name, if it exists- Specified by:
get
in interfaceAttributeMap
- Parameters:
name
- the name of the required attribute- Returns:
- the required attribute if it exists
-
get
public AttributeInfo get(NamespaceUri uri, java.lang.String local)
Description copied from interface:AttributeMap
Get the attribute with a given name, if it exists- Specified by:
get
in interfaceAttributeMap
- Parameters:
uri
- the namespace part of the name of the required attributelocal
- the local part of the name of the required attribute- Returns:
- the required attribute if it exists
-
getByFingerprint
public AttributeInfo getByFingerprint(int fingerprint, NamePool namePool)
- Specified by:
getByFingerprint
in interfaceAttributeMap
-
put
public AttributeMap put(AttributeInfo att)
Description copied from interface:AttributeMap
Replace or add an attribute, to create a new AttributeMap- Specified by:
put
in interfaceAttributeMap
- Parameters:
att
- the attribute to be added or replaced- Returns:
- the new AttributeMap
-
remove
public AttributeMap remove(NodeName name)
Description copied from interface:AttributeMap
Remove an existing attribute, to create a new AttributeMap- Specified by:
remove
in interfaceAttributeMap
- Parameters:
name
- the name of the attribute to be removed (if it exists)- Returns:
- a new attribute map in which the specified attribute is omitted. If the attribute map contains no attribute with the given name, the input attribute map (or one equivalent to it) is returned unchanged
-
iterator
public java.util.Iterator<AttributeInfo> iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable<AttributeInfo>
-
asList
public java.util.ArrayList<AttributeInfo> asList()
Description copied from interface:AttributeMap
Get the contents of the AttributeMap as a list ofAttributeInfo
objects.The order of the returned list must be consistent with document order, with the order of the attribute axis, and with position-based retrieval of individual
AttributeInfo
objects; multiple calls are not required to return the same list, but they must be consistent in their ordering.Modifying the returned list has no effect on the AttributeMap
- Specified by:
asList
in interfaceAttributeMap
- Returns:
- a list of attributes in the AttributeMap
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-