Searched defs:endKey (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DSortedMap.java43 * are less than the specified {@code endKey}. Changes to the returned
49 * @param endKey
51 * @return a sorted map where the keys are less than {@code endKey}.
62 public SortedMap<K,V> headMap(K endKey); argument
75 * specified {@code endKey}. Changes to the returned sorted map are
83 * @param endKey
97 public SortedMap<K,V> subMap(K startKey, K endKey); argument
H A DCollections.java825 @Override public SortedMap<K, V> headMap(K endKey) { argument
827 return new SynchronizedSortedMap<K, V>(sm.headMap(endKey),
838 @Override public SortedMap<K, V> subMap(K startKey, K endKey) { argument
841 endKey), mutex);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DRefSortedMap.java211 public SortedMap<K, V> subMap(K startKey, K endKey) { argument
215 if (!isInRange(endKey)) {
218 return new SubMap(true, startKey, true, endKey);
290 public SortedMap<K, V> subMap(K startKey, K endKey) { argument
291 return new SubMap(true, startKey, true, endKey);

Completed in 120 milliseconds