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 Modifier and Type Class 描述 class
TreeSet<E>
ANavigableSet
实现基于TreeMap
。Methods in java.util that return NavigableSet Modifier and Type 方法 描述 static <E> NavigableSet<E>
Collections. checkedNavigableSet(NavigableSet<E> s, Class<E> type)
返回指定的可导航集的动态类型安全视图。NavigableSet<K>
NavigableMap. descendingKeySet()
返回此映射中包含的键的相反顺序NavigableSet
。NavigableSet<K>
TreeMap. descendingKeySet()
NavigableSet<E>
NavigableSet. descendingSet()
返回此集合中包含的元素的反向排序视图。NavigableSet<E>
TreeSet. descendingSet()
static <E> NavigableSet<E>
Collections. emptyNavigableSet()
返回一个空导航集(immutable)。NavigableSet<E>
NavigableSet. headSet(E toElement, boolean inclusive)
返回此集合的部分的视图,其元素小于(或等于,如果inclusive
为真)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)
返回此集合的部分的视图,其元素的范围从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)
返回此集合的部分的视图,其元素大于(或等于,如果为inclusive
为真)fromElement
。NavigableSet<E>
TreeSet. tailSet(E fromElement, boolean inclusive)
static <T> NavigableSet<T>
Collections. unmodifiableNavigableSet(NavigableSet<T> s)
返回指定的可导航集合的不可修改的视图。Methods in java.util with parameters of type NavigableSet Modifier and Type 方法 描述 static <E> NavigableSet<E>
Collections. checkedNavigableSet(NavigableSet<E> s, Class<E> type)
返回指定的可导航集的动态类型安全视图。static <T> NavigableSet<T>
Collections. synchronizedNavigableSet(NavigableSet<T> s)
返回由指定的可导航集支持的同步(线程安全)可导航集。static <T> NavigableSet<T>
Collections. unmodifiableNavigableSet(NavigableSet<T> s)
返回指定的可导航集合的不可修改的视图。 -
Uses of NavigableSet in java.util.concurrent
Classes in java.util.concurrent that implement NavigableSet Modifier and Type Class 描述 class
ConcurrentSkipListSet<E>
可扩展的并行NavigableSet
实现基于一个ConcurrentSkipListMap
。Methods in java.util.concurrent that return NavigableSet Modifier and Type 方法 描述 NavigableSet<K>
ConcurrentNavigableMap. descendingKeySet()
返回此映射中包含的键的相反顺序NavigableSet
。NavigableSet<K>
ConcurrentSkipListMap. descendingKeySet()
NavigableSet<E>
ConcurrentSkipListSet. descendingSet()
返回此集合中包含的元素的反向排序视图。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<K>
ConcurrentSkipListMap. navigableKeySet()
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)
-