| com.hp.hpl.jena.mem.BunchMap
All known Subclasses: com.hp.hpl.jena.mem.WrappedHashMap, com.hp.hpl.jena.mem.HashedBunchMap,
BunchMap | public interface BunchMap (Code) | | A pruned (and slightly stewed) version of Map, containing just those operations
required by NodeToTriplesMaps. BunchMaps contain only TripleBunch's.
author: kers |
Method Summary | |
public void | clear() Clear this map: all entries are removed. | public TripleBunch | get(Object key) Answer the TripleBunch associated with key , or
null if there isn't one. | public ExtendedIterator | keyIterator() Answer an iterator over all the keys in this map. | public void | put(Object key, TripleBunch value) Associate key and value . | public void | remove(Object key) Remove any association for key ; get on this
key will now deliver null . | public long | size() The number of items in the bunch. |
clear | public void clear()(Code) | | Clear this map: all entries are removed.
|
get | public TripleBunch get(Object key)(Code) | | Answer the TripleBunch associated with key , or
null if there isn't one.
|
put | public void put(Object key, TripleBunch value)(Code) | | Associate key and value . Any existing
association of key is lost. get on this key
will now deliver this value.
|
remove | public void remove(Object key)(Code) | | Remove any association for key ; get on this
key will now deliver null .
|
size | public long size()(Code) | | The number of items in the bunch.
|
|
|