Package com.saxonica.xsltextn.pedigree
Class DelegatingMapItem
- java.lang.Object
 - 
- net.sf.saxon.ma.map.MapItem
 - 
- com.saxonica.xsltextn.pedigree.DelegatingMapItem
 
 
 
- 
- All Implemented Interfaces:
 Callable,Function,GroundedValue,Item,Sequence
- Direct Known Subclasses:
 PedigreeMapItem
public abstract class DelegatingMapItem extends MapItem
ADelegatingMapItemis an abstract class representing a map that is implemented by delegating all map-related functionality to another map. Unless any methods are overridden, the functionality is identical to that of the wrapped map item.Note that methods such as
addEntry(net.sf.saxon.value.AtomicValue, net.sf.saxon.om.GroundedValue)that create a new map will (unless overridden) simply delegate to the base map, and the new map will therefore not be a delegating map. 
- 
- 
Constructor Summary
Constructors Constructor Description DelegatingMapItem(MapItem base)Create aDelegatingMapItemthat delegates all map-related access to a specified base map. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MapItemaddEntry(AtomicValue key, GroundedValue value)Create a new map containing the existing entries in the map plus an additional entry, without modifying the original.booleanconforms(PlainType keyType, SequenceType valueType, TypeHierarchy th)Ask whether the map conforms to a given map typeGroundedValueget(AtomicValue key)Get an entry from the MapMapItemgetBaseItem()MapTypegetItemType(TypeHierarchy th)Get the type of the map.UTypegetKeyUType()Get the lowest common item type of the keys in the mapbooleanisEmpty()Ask whether the map is emptyAtomicIteratorkeys()Get the set of all key values in the map.java.lang.Iterable<KeyValuePair>keyValuePairs()Get the set of all key-value pairs in the mapMapItemremove(AtomicValue key)Remove an entry from the mapintsize()Get the size of the mapjava.lang.StringtoString()- 
Methods inherited from class net.sf.saxon.ma.map.MapItem
atomize, call, deepEquals, effectiveBooleanValue, export, getAnnotations, getArity, getDescription, getFunctionItemType, getFunctionName, getGenre, getItemTypeOfSequence, getOperandRoles, getSerialNumber, getTypedValue, getUnicodeStringValue, isArray, isKnownToConform, isMap, isTrustedResultType, itemAt, makeNewContext, mapToString, toShortString 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface net.sf.saxon.om.Function
isSequenceVariadic 
- 
Methods inherited from interface net.sf.saxon.om.GroundedValue
asIterable, concatenate, containsNode, materialize 
- 
Methods inherited from interface net.sf.saxon.om.Item
getLength, getStringValue, head, isStreamed, iterate, reduce, subsequence 
- 
Methods inherited from interface net.sf.saxon.om.Sequence
makeRepeatable 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
DelegatingMapItem
public DelegatingMapItem(MapItem base)
Create aDelegatingMapItemthat delegates all map-related access to a specified base map.- Parameters:
 base- the map item to which this implementation delegates
 
 - 
 
- 
Method Detail
- 
get
public GroundedValue get(AtomicValue key)
Description copied from class:MapItemGet an entry from the Map 
- 
size
public int size()
Description copied from class:MapItemGet the size of the map 
- 
isEmpty
public boolean isEmpty()
Description copied from class:MapItemAsk whether the map is empty 
- 
keys
public AtomicIterator keys()
Description copied from class:MapItemGet the set of all key values in the map. 
- 
keyValuePairs
public java.lang.Iterable<KeyValuePair> keyValuePairs()
Description copied from class:MapItemGet the set of all key-value pairs in the map- Specified by:
 keyValuePairsin classMapItem- Returns:
 - an iterable containing all the key-value pairs
 
 
- 
addEntry
public MapItem addEntry(AtomicValue key, GroundedValue value)
Description copied from class:MapItemCreate a new map containing the existing entries in the map plus an additional entry, without modifying the original. If there is already an entry with the specified key, this entry is replaced by the new entry. 
- 
remove
public MapItem remove(AtomicValue key)
Description copied from class:MapItemRemove an entry from the map 
- 
conforms
public boolean conforms(PlainType keyType, SequenceType valueType, TypeHierarchy th)
Description copied from class:MapItemAsk whether the map conforms to a given map type 
- 
getItemType
public MapType getItemType(TypeHierarchy th)
Description copied from class:MapItemGet the type of the map. This method is used largely for diagnostics, to report the type of a map when it differs from the required type.- Specified by:
 getItemTypein classMapItem- Parameters:
 th- the type hierarchy cache- Returns:
 - the type of this map
 
 
- 
getKeyUType
public UType getKeyUType()
Description copied from class:MapItemGet the lowest common item type of the keys in the map- Specified by:
 getKeyUTypein classMapItem- Returns:
 - the most specific type to which all the keys belong. If the map is empty, return UType.VOID
 
 
- 
getBaseItem
public MapItem getBaseItem()
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -