Uses of Interface
java.util.SortedSet
-
Packages that use SortedSet 软件包 描述 java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.concurrent 实用程序类通常用于并发编程。javax.imageio.plugins.tiff 内置TIFF插件使用的公共类。 -
-
Uses of SortedSet in java.util
Subinterfaces of SortedSet in java.util Modifier and Type 接口 描述 interface
NavigableSet<E>
ASortedSet
扩展了报告与给定搜索目标最匹配的导航方法。Classes in java.util that implement SortedSet Modifier and Type Class 描述 class
TreeSet<E>
ANavigableSet
实现基于TreeMap
。Methods in java.util that return SortedSet Modifier and Type 方法 描述 static <E> SortedSet<E>
Collections. checkedSortedSet(SortedSet<E> s, Class<E> type)
返回指定排序集的动态类型安全视图。static <E> SortedSet<E>
Collections. emptySortedSet()
返回一个空的排序集(immutable)。SortedSet<E>
NavigableSet. headSet(E toElement)
返回该集合的部分的视图,其元素严格小于toElement
。SortedSet<E>
SortedSet. headSet(E toElement)
返回该集合的部分的视图,其元素严格小于toElement
。SortedSet<E>
TreeSet. headSet(E toElement)
SortedSet<E>
NavigableSet. subSet(E fromElement, E toElement)
返回此集合的部分的视图,其元素的范围从fromElement
(含)到toElement
,独占。SortedSet<E>
SortedSet. subSet(E fromElement, E toElement)
返回此集合的部分的视图,其元素的范围从fromElement
(含)到toElement
,独占。SortedSet<E>
TreeSet. subSet(E fromElement, E toElement)
static <T> SortedSet<T>
Collections. synchronizedSortedSet(SortedSet<T> s)
返回由指定的排序集支持的同步(线程安全)排序集。SortedSet<E>
NavigableSet. tailSet(E fromElement)
返回该集合的部分的视图,该部分的元素大于或等于fromElement
。SortedSet<E>
SortedSet. tailSet(E fromElement)
返回该集合的部分的视图,该部分的元素大于或等于fromElement
。SortedSet<E>
TreeSet. tailSet(E fromElement)
static <T> SortedSet<T>
Collections. unmodifiableSortedSet(SortedSet<T> s)
返回指定排序集的不可修改视图。Methods in java.util with parameters of type SortedSet Modifier and Type 方法 描述 static <E> SortedSet<E>
Collections. checkedSortedSet(SortedSet<E> s, Class<E> type)
返回指定排序集的动态类型安全视图。static <T> SortedSet<T>
Collections. synchronizedSortedSet(SortedSet<T> s)
返回由指定的排序集支持的同步(线程安全)排序集。static <T> SortedSet<T>
Collections. unmodifiableSortedSet(SortedSet<T> s)
返回指定排序集的不可修改视图。Constructors in java.util with parameters of type SortedSet Constructor 描述 PriorityQueue(SortedSet<? extends E> c)
创建包含指定排序集中的元素的PriorityQueue
。TreeSet(SortedSet<E> s)
构造一个包含相同元素的新树,并使用与指定排序集相同的顺序。 -
Uses of SortedSet in java.util.concurrent
Classes in java.util.concurrent that implement SortedSet Modifier and Type Class 描述 class
ConcurrentSkipListSet<E>
可扩展的并行NavigableSet
实现基于一个ConcurrentSkipListMap
。Constructors in java.util.concurrent with parameters of type SortedSet Constructor 描述 ConcurrentSkipListSet(SortedSet<E> s)
构造一个包含相同元素并使用与指定排序集相同顺序的新集合。 -
Uses of SortedSet in javax.imageio.plugins.tiff
Methods in javax.imageio.plugins.tiff that return SortedSet Modifier and Type 方法 描述 SortedSet<String>
TIFFTagSet. getTagNames()
检索不可修改的词典增加的标签名称集合。SortedSet<Integer>
TIFFTagSet. getTagNumbers()
检索一个不可修改的数字增加的标签号集合。
-