Searched refs:fromKey (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DStoredSortedKeySet.java153 * greater than or equal to fromKey.
159 * @param fromKey is the lower bound.
166 public SortedSet tailSet(Object fromKey) { argument
168 return subSet(fromKey, true, null, false);
173 * strictly greater than fromKey, optionally including fromKey.
179 * @param fromKey is the lower bound.
181 * @param fromInclusive is true to include fromKey.
188 public SortedSet tailSet(Object fromKey, boolean fromInclusive) { argument
190 return subSet(fromKey, fromInclusiv
210 subSet(Object fromKey, Object toKey) argument
237 subSet(Object fromKey, boolean fromInclusive, Object toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedMap.java259 * greater than or equal to fromKey.
265 * @param fromKey is the lower bound.
272 public SortedMap tailMap(Object fromKey) { argument
274 return subMap(fromKey, true, null, false);
279 * strictly greater than fromKey, optionally including fromKey.
285 * @param fromKey is the lower bound.
287 * @param fromInclusive is true to include fromKey.
294 public SortedMap tailMap(Object fromKey, boolean fromInclusive) { argument
296 return subMap(fromKey, fromInclusiv
316 subMap(Object fromKey, Object toKey) argument
343 subMap(Object fromKey, boolean fromInclusive, Object toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedEntrySet.java215 Object fromKey = (fromMapEntry != null) ?
221 view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DBasicIndex.java163 public EntityCursor<K> keys(K fromKey, boolean fromInclusive, argument
167 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
172 K fromKey,
179 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
183 public EntityCursor<E> entities(K fromKey, boolean fromInclusive, argument
187 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
192 K fromKey,
199 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
234 K fromKey,
243 if (fromKey !
171 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
191 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
233 cursor(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]
H A DEntityIndex.java736 * @param fromKey is the lower bound of the key range, or null if the range
739 * @param fromInclusive is true if keys greater than or equal to fromKey
741 * fromKey should be included.
752 EntityCursor<K> keys(K fromKey, argument
766 * @param fromKey is the lower bound of the key range, or null if the range
769 * @param fromInclusive is true if keys greater than or equal to fromKey
771 * fromKey should be included.
787 K fromKey,
802 * @param fromKey is the lower bound of the key range, or null if the range
805 * @param fromInclusive is true if keys greater than or equal to fromKey
786 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
818 entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
852 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
[all...]
H A DSubIndex.java215 public EntityCursor<PK> keys(PK fromKey, argument
221 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
226 PK fromKey,
233 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
237 public EntityCursor<E> entities(PK fromKey, argument
243 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
248 PK fromKey,
255 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
290 PK fromKey,
299 if (fromKey !
225 keys(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
247 entities(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
289 cursor(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]

Completed in 123 milliseconds