Uses of Interface
java.util.NavigableSet
-
Packages that use NavigableSet 软件包 描述 java.util 包含集合框架,一些国际化支持类,服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,位数组和几个其他实用程序类。java.util.concurrent 实用类通常在并发编程中有用。 -
-
Uses of NavigableSet in java.util
Classes in java.util that implement NavigableSet 变量和类型 类 描述 class
TreeSet<E>
一个NavigableSet
实现基于一个TreeMap
。Methods in java.util that return NavigableSet 变量和类型 方法 描述 static <E> NavigableSet<E>
Collections. checkedNavigableSet(NavigableSet<E> s, 类<E> type)
返回指定可导航集的动态类型安全视图。NavigableSet<K>
NavigableMap. descendingKeySet()
返回此映射中包含的键的反向顺序NavigableSet
视图。NavigableSet<K>
TreeMap. descendingKeySet()
NavigableSet<E>
NavigableSet. descendingSet()
返回此set中包含的元素的逆序视图。NavigableSet<E>
TreeSet. descendingSet()
static <E> NavigableSet<E>
Collections. emptyNavigableSet()
返回一个空的可导航集(不可变)。NavigableSet<E>
NavigableSet. headSet(E toElement, boolean inclusive)
返回此set的部分视图,其元素小于(或等于,如果inclusive
为true)toElement
。NavigableSet<E>
TreeSet. headSet(E toElement, boolean inclusive)
NavigableSet<K>
NavigableMap. navigableKeySet()
返回此映射中包含的键的NavigableSet
视图。NavigableSet<K>
TreeMap. navigableKeySet()
NavigableSet<E>
NavigableSet. subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
返回此set的部分视图,其元素范围为fromElement
到toElement
。NavigableSet<E>
TreeSet. subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
static <T> NavigableSet<T>
Collections. synchronizedNavigableSet(NavigableSet<T> s)
返回由指定的可导航集支持的同步(线程安全)可导航集。NavigableSet<E>
NavigableSet. tailSet(E fromElement, boolean inclusive)
返回此set的部分视图,其元素大于(或等于,如果inclusive
为true)fromElement
。NavigableSet<E>
TreeSet. tailSet(E fromElement, boolean inclusive)
static <T> NavigableSet<T>
Collections. unmodifiableNavigableSet(NavigableSet<T> s)
返回指定可导航集的 unmodifiable view 。Methods in java.util with parameters of type NavigableSet 变量和类型 方法 描述 static <E> NavigableSet<E>
Collections. checkedNavigableSet(NavigableSet<E> s, 类<E> type)
返回指定可导航集的动态类型安全视图。static <T> NavigableSet<T>
Collections. synchronizedNavigableSet(NavigableSet<T> s)
返回由指定的可导航集支持的同步(线程安全)可导航集。static <T> NavigableSet<T>
Collections. unmodifiableNavigableSet(NavigableSet<T> s)
返回指定可导航集的 unmodifiable view 。 -
Uses of NavigableSet in java.util.concurrent
Classes in java.util.concurrent that implement NavigableSet 变量和类型 类 描述 class
ConcurrentSkipListSet<E>
可扩展的并行NavigableSet
实现基于一个ConcurrentSkipListMap
。Methods in java.util.concurrent that return NavigableSet 变量和类型 方法 描述 NavigableSet<K>
ConcurrentNavigableMap. descendingKeySet()
返回此映射中包含的键的反向顺序NavigableSet
视图。NavigableSet<E>
ConcurrentSkipListSet. descendingSet()
返回此set中包含的元素的逆序视图。NavigableSet<E>
ConcurrentSkipListSet. headSet(E toElement)
NavigableSet<E>
ConcurrentSkipListSet. headSet(E toElement, boolean inclusive)
NavigableSet<K>
ConcurrentNavigableMap. keySet()
返回此映射中包含的键的NavigableSet
视图。NavigableSet<K>
ConcurrentSkipListMap. keySet()
返回此映射中包含的键的NavigableSet
视图。NavigableSet<K>
ConcurrentNavigableMap. navigableKeySet()
返回此映射中包含的键的NavigableSet
视图。NavigableSet<E>
ConcurrentSkipListSet. subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
NavigableSet<E>
ConcurrentSkipListSet. subSet(E fromElement, E toElement)
NavigableSet<E>
ConcurrentSkipListSet. tailSet(E fromElement)
NavigableSet<E>
ConcurrentSkipListSet. tailSet(E fromElement, boolean inclusive)
-