Lines Matching refs:inclusive

450      * position, inclusive.
481 * position, inclusive.<p>
765 * and <tt>list.size()-1</tt>, inclusive. (This method has no effect on
1301 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
1303 ns.headSet(toElement, inclusive));
1306 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
1308 ns.tailSet(fromElement, inclusive));
1990 public NavigableMap<K, V> headMap(K toKey, boolean inclusive)
1991 { return unmodifiableNavigableMap(nm.headMap(toKey, inclusive)); }
1992 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive)
1993 { return unmodifiableNavigableMap(nm.tailMap(fromKey, inclusive)); }
2381 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
2383 return new SynchronizedNavigableSet<>(ns.headSet(toElement, inclusive), mutex);
2387 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
2389 return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, inclusive), mutex);
2981 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
2984 nm.headMap(toKey, inclusive), mutex);
2988 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
2991 nm.tailMap(fromKey, inclusive), mutex);
3416 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
3417 return checkedNavigableSet(ns.headSet(toElement, inclusive), type);
3420 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
3421 return checkedNavigableSet(ns.tailSet(fromElement, inclusive), type);
4197 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
4198 return checkedNavigableMap(nm.headMap(toKey, inclusive), keyType, valueType);
4201 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
4202 return checkedNavigableMap(nm.tailMap(fromKey, inclusive), keyType, valueType);