Searched refs:fromInclusive (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredSortedEntrySet.java156 * @param fromInclusive is true to include fromMapEntry.
163 public SortedSet tailSet(Object fromMapEntry, boolean fromInclusive) { argument
165 return subSet(fromMapEntry, fromInclusive, null, false);
201 * @param fromInclusive is true to include fromMapEntry.
212 public SortedSet subSet(Object fromMapEntry, boolean fromInclusive, argument
221 view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
H A DStoredSortedKeySet.java181 * @param fromInclusive is true to include fromKey.
188 public SortedSet tailSet(Object fromKey, boolean fromInclusive) { argument
190 return subSet(fromKey, fromInclusive, null, false);
226 * @param fromInclusive is true to include fromKey.
237 public SortedSet subSet(Object fromKey, boolean fromInclusive, argument
242 view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
H A DStoredSortedValueSet.java194 * @param fromInclusive is true to include fromValue.
201 public SortedSet tailSet(Object fromValue, boolean fromInclusive) { argument
203 return subSet(fromValue, fromInclusive, null, false);
239 * @param fromInclusive is true to include fromValue.
250 public SortedSet subSet(Object fromValue, boolean fromInclusive, argument
255 view.subView(fromValue, fromInclusive, toValue, toInclusive,
H A DStoredSortedMap.java287 * @param fromInclusive is true to include fromKey.
294 public SortedMap tailMap(Object fromKey, boolean fromInclusive) { argument
296 return subMap(fromKey, fromInclusive, null, false);
332 * @param fromInclusive is true to include fromKey.
343 public SortedMap subMap(Object fromKey, boolean fromInclusive, argument
348 view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
/macosx-10.9.5/BerkeleyDB-21/db/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,
173 boolean fromInclusive,
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,
193 boolean fromInclusive,
199 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
235 boolean fromInclusive,
253 (fromEntry, fromInclusive, toEntr
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.java739 * @param fromInclusive is true if keys greater than or equal to fromKey
753 boolean fromInclusive,
769 * @param fromInclusive is true if keys greater than or equal to fromKey
788 boolean fromInclusive,
805 * @param fromInclusive is true if keys greater than or equal to fromKey
819 boolean fromInclusive,
835 * @param fromInclusive is true if keys greater than or equal to fromKey
854 boolean fromInclusive,
752 keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
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
H A DSubIndex.java216 boolean fromInclusive,
221 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
227 boolean fromInclusive,
233 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
238 boolean fromInclusive,
243 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
249 boolean fromInclusive,
255 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
291 boolean fromInclusive,
309 (fromEntry, fromInclusive, toEntr
215 keys(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) argument
225 keys(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
237 entities(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) 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 139 milliseconds