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

/libcore/ojluni/src/main/java/java/util/
H A DCollections.java3371 public static <E> NavigableSet<E> checkedNavigableSet(NavigableSet<E> s, method in class:Collections
3398 { return checkedNavigableSet(ns.descendingSet(), type); }
3400 {return checkedNavigableSet(ns.descendingSet(), type).iterator(); }
3403 return checkedNavigableSet(ns.subSet(fromElement, true, toElement, false), type);
3406 return checkedNavigableSet(ns.headSet(toElement, false), type);
3409 return checkedNavigableSet(ns.tailSet(fromElement, true), type);
3413 return checkedNavigableSet(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), type);
3417 return checkedNavigableSet(ns.headSet(toElement, inclusive), type);
3421 return checkedNavigableSet(ns.tailSet(fromElement, inclusive), type);
4170 return checkedNavigableSet(n
[all...]

Completed in 18 milliseconds