| java.lang.Object com.sleepycat.persist.BasicIndex
BasicIndex | abstract class BasicIndex implements EntityIndex<K, E>(Code) | | Implements EntityIndex using a ValueAdapter. This class is abstract and
does not implement get()/map()/sortedMap() because it doesn't have access
to the entity binding.
author: Mark Hayes |
Method Summary | |
public boolean | contains(K key) | public boolean | contains(Transaction txn, K key, LockMode lockMode) | public long | count() | public boolean | delete(K key) | public boolean | delete(Transaction txn, K key) | public EntityCursor<E> | entities() | public EntityCursor<E> | entities(Transaction txn, CursorConfig config) | public EntityCursor<E> | entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) | public EntityCursor<E> | entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) | public EntityCursor<K> | keys() | public EntityCursor<K> | keys(Transaction txn, CursorConfig config) | public EntityCursor<K> | keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) | public EntityCursor<K> | keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) |
transactional | boolean transactional(Code) | | |
|
|