Package com._1c.g5.v8.bm.store
Interface IBmLongPersistentIndex<P>
- 
 public interface IBmLongPersistentIndex<P>
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()booleancontainsKey(long key)voidforEach(BiConsumer<Long,P> action)Performs the given action for each entry in this index until all entries have been processed or the action throws an exception.Pget(long key)Iterable<Long>keys()voidput(long key, P value)voidputAll(IBmLongMap<P> map)voidputAll(Map<Long,P> map)Premove(long key)
 
- 
- 
- 
Method Detail- 
clearvoid clear() 
 - 
containsKeyboolean containsKey(long key) 
 - 
removeP remove(long key) 
 - 
forEachvoid forEach(BiConsumer<Long,P> action) Performs the given action for each entry in this index until all entries have been processed or the action throws an exception.- Parameters:
- action- The action. May not be- null.
 
 - 
putvoid put(long key, P value)
 - 
getP get(long key) 
 - 
putAllvoid putAll(IBmLongMap<P> map) 
 
- 
 
-