Package com._1c.g5.v8.bm.store
Interface IBmLongPersistentIndex<P>
-
public interface IBmLongPersistentIndex<P>
-
-
Method Summary
All 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
-
clear
void clear()
-
containsKey
boolean containsKey(long key)
-
remove
P remove(long key)
-
forEach
void 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 benull.
-
put
void put(long key, P value)
-
get
P get(long key)
-
putAll
void putAll(IBmLongMap<P> map)
-
-