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 变量和类型 接口 描述 interface
NavigableSet<E>
SortedSet
扩展了导航方法,报告给定搜索目标的最接近匹配。Classes in java.util that implement SortedSet 变量和类型 类 描述 class
TreeSet<E>
一个NavigableSet
实现基于一个TreeMap
。Methods in java.util that return SortedSet 变量和类型 方法 描述 static <E> SortedSet<E>
Collections. checkedSortedSet(SortedSet<E> s, 类<E> type)
返回指定有序集的动态类型安全视图。static <E> SortedSet<E>
Collections. emptySortedSet()
返回一个空的有序集(不可变)。SortedSet<E>
NavigableSet. headSet(E toElement)
返回此set的部分视图,其元素严格小于toElement
。SortedSet<E>
SortedSet. headSet(E toElement)
返回此set的部分视图,其元素严格小于toElement
。SortedSet<E>
TreeSet. headSet(E toElement)
SortedSet<E>
NavigableSet. subSet(E fromElement, E toElement)
返回此set的部分视图,其元素范围从fromElement
(含)到toElement
(独占)。SortedSet<E>
SortedSet. subSet(E fromElement, E toElement)
返回此set的部分视图,其元素范围从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)
返回此set的部分视图,其元素大于或等于fromElement
。SortedSet<E>
SortedSet. tailSet(E fromElement)
返回此set的部分视图,其元素大于或等于fromElement
。SortedSet<E>
TreeSet. tailSet(E fromElement)
static <T> SortedSet<T>
Collections. unmodifiableSortedSet(SortedSet<T> s)
返回指定有序集的 unmodifiable view 。Methods in java.util with parameters of type SortedSet 变量和类型 方法 描述 static <E> SortedSet<E>
Collections. checkedSortedSet(SortedSet<E> s, 类<E> type)
返回指定有序集的动态类型安全视图。static <T> SortedSet<T>
Collections. synchronizedSortedSet(SortedSet<T> s)
返回由指定有序集支持的同步(线程安全)有序集。static <T> SortedSet<T>
Collections. unmodifiableSortedSet(SortedSet<T> s)
返回指定有序集的 unmodifiable view 。Constructors in java.util with parameters of type SortedSet 构造器 描述 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 变量和类型 类 描述 class
ConcurrentSkipListSet<E>
可扩展的并行NavigableSet
实现基于一个ConcurrentSkipListMap
。Constructors in java.util.concurrent with parameters of type SortedSet 构造器 描述 ConcurrentSkipListSet(SortedSet<E> s)
构造一个包含相同元素的新集合,并使用与指定有序集合相同的顺序。 -
Uses of SortedSet in javax.imageio.plugins.tiff
Methods in javax.imageio.plugins.tiff that return SortedSet 变量和类型 方法 描述 SortedSet<String>
TIFFTagSet. getTagNames()
检索不可修改的按字典顺序增加的标记名称集。SortedSet<Integer>
TIFFTagSet. getTagNumbers()
检索不可修改的数值增加的标记号集。
-