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 void
clear()
boolean
containsKey(long key)
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.P
get(long key)
Iterable<Long>
keys()
void
put(long key, P value)
void
putAll(IBmLongMap<P> map)
void
putAll(Map<Long,P> map)
P
remove(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)
-
-