• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/

Lines Matching defs:keys

27  * The interface for accessing keys and entities via a primary or secondary
44 * <li>{@link PrimaryIndex} maps primary keys to entities.</li>
45 * <li>{@link SecondaryIndex} maps secondary keys to entities.</li>
46 * <li>{@link SecondaryIndex#keysIndex} maps secondary keys to primary
47 * keys.</li>
48 * <li>{@link SecondaryIndex#subIndex} maps primary keys to entities, for the
85 * <p>{@link PrimaryIndex} maps primary keys to entities:</p>
100 * <p>{@link SecondaryIndex} maps secondary keys to entities:</p>
115 * <p>{@link SecondaryIndex#keysIndex} maps secondary keys to primary
116 * keys:</p>
130 * <p>{@link SecondaryIndex#subIndex} maps primary keys to entities, for the
157 * <li>An {@link EntityCursor} can be obtained using the {@link #keys} and
160 * return values within a specified range of keys.</li>
190 * done by restricting a cursor to a range of keys:</p>
235 * <p>Note that when using an index, keys and values are stored and retrieved
668 * Opens a cursor for traversing all keys in this index.
677 EntityCursor<K> keys()
681 * Opens a cursor for traversing all keys in this index.
694 EntityCursor<K> keys(Transaction txn, CursorConfig config)
729 * Opens a cursor for traversing keys in a key range.
739 * @param fromInclusive is true if keys greater than or equal to fromKey
740 * should be included in the key range, or false if only keys greater than
746 * @param toInclusive is true if keys less than or equal to toKey should be
747 * included in the key range, or false if only keys less than toKey should
752 EntityCursor<K> keys(K fromKey,
759 * Opens a cursor for traversing keys in a key range.
769 * @param fromInclusive is true if keys greater than or equal to fromKey
770 * should be included in the key range, or false if only keys greater than
776 * @param toInclusive is true if keys less than or equal to toKey should be
777 * included in the key range, or false if only keys less than toKey should
786 EntityCursor<K> keys(Transaction txn,
805 * @param fromInclusive is true if keys greater than or equal to fromKey
806 * should be included in the key range, or false if only keys greater than
812 * @param toInclusive is true if keys less than or equal to toKey should be
813 * included in the key range, or false if only keys less than toKey should
835 * @param fromInclusive is true if keys greater than or equal to fromKey
836 * should be included in the key range, or false if only keys greater than
842 * @param toInclusive is true if keys less than or equal to toKey should be
843 * included in the key range, or false if only keys less than toKey should
861 * Opens a cursor for traversing all keys in this index in arbitrary order.
863 * <p>Normally entities and keys are returned in key order. This method
871 * @param selector the filter for selecting keys to be returned, or null
872 * to select all keys.
881 * Opens a cursor for traversing all keys in this index in arbitrary order.
883 * <p>Normally entities and keys are returned in key order. This method
892 * @param selector the filter for selecting keys to be returned, or null
893 * to select all keys.
911 * <p>Normally entities and keys are returned in key order. This method
919 * @param selector the filter for selecting keys to be returned, or null
920 * to select all keys.
932 * <p>Normally entities and keys are returned in key order. This method
941 * @param selector the filter for selecting keys to be returned, or null
942 * to select all keys.