Uses of Interface
org.eclipse.collections.api.set.sorted.ImmutableSortedSet
-
Packages that use ImmutableSortedSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.set.sorted This package containsImmutableSortedSetFactory
andMutableSortedSetFactory
.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap
.org.eclipse.collections.api.partition.set.sorted This package contains interfaces forPartitionSortedSet
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
interface.org.eclipse.collections.impl.partition.set.sorted This package contains implementations of thePartitionSet
interface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of ImmutableSortedSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableSortedSet Modifier and Type Method Description default ImmutableSortedSet<T>
RichIterable. toImmutableSortedSet()
Converts the RichIterable to the default ImmutableSortedSet implementation.default ImmutableSortedSet<T>
RichIterable. toImmutableSortedSet(java.util.Comparator<? super T> comparator)
Converts the collection to an ImmutableSortedSet implementation and sorts it using the specified comparator.default <V extends java.lang.Comparable<? super V>>
ImmutableSortedSet<T>RichIterable. toImmutableSortedSetBy(Function<? super T,? extends V> function)
Converts the collection to an ImmutableSortedSet implementation and sorts it based on the natural order of the attribute returned byfunction
. -
Uses of ImmutableSortedSet in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
ImmutableSortedBag. distinct()
default ImmutableSortedSet<T>
ImmutableSortedBag. selectUnique()
ImmutableSortedSet<Pair<T,java.lang.Integer>>
ImmutableSortedBag. zipWithIndex()
-
Uses of ImmutableSortedSet in org.eclipse.collections.api.factory.set.sorted
Methods in org.eclipse.collections.api.factory.set.sorted that return ImmutableSortedSet Modifier and Type Method Description <T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. empty()
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. empty(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. of()
Same asImmutableSortedSetFactory.empty()
.<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. of(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. of(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. of(T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. ofAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. ofAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. ofSortedSet(java.util.SortedSet<T> set)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. with()
Same asImmutableSortedSetFactory.empty()
.<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. with(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. with(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. with(T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. withAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. withAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactory. withSortedSet(java.util.SortedSet<T> set)
-
Uses of ImmutableSortedSet in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<V>
ImmutableSortedSetMultimap. get(K key)
-
Uses of ImmutableSortedSet in org.eclipse.collections.api.partition.set.sorted
Methods in org.eclipse.collections.api.partition.set.sorted that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
PartitionImmutableSortedSet. getRejected()
ImmutableSortedSet<T>
PartitionImmutableSortedSet. getSelected()
-
Uses of ImmutableSortedSet in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
ImmutableSortedSet. difference(SetIterable<? extends T> subtrahendSet)
ImmutableSortedSet<T>
ImmutableSortedSet. distinct()
ImmutableSortedSet<T>
ImmutableSortedSet. drop(int count)
ImmutableSortedSet<T>
ImmutableSortedSet. dropWhile(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableSortedSet. intersect(SetIterable<? extends T> set)
ImmutableSortedSet<T>
ImmutableSortedSet. newWith(T element)
ImmutableSortedSet<T>
ImmutableSortedSet. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedSet<T>
ImmutableSortedSet. newWithout(T element)
ImmutableSortedSet<T>
ImmutableSortedSet. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedSet<SortedSetIterable<T>>
ImmutableSortedSet. powerSet()
ImmutableSortedSet<T>
ImmutableSortedSet. reject(Predicate<? super T> predicate)
<P> ImmutableSortedSet<T>
ImmutableSortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedSet<T>
ImmutableSortedSet. select(Predicate<? super T> predicate)
<S> ImmutableSortedSet<S>
ImmutableSortedSet. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSortedSet<T>
ImmutableSortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedSet<T>
ImmutableSortedSet. symmetricDifference(SetIterable<? extends T> setB)
ImmutableSortedSet<T>
ImmutableSortedSet. take(int count)
ImmutableSortedSet<T>
ImmutableSortedSet. takeWhile(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableSortedSet. tap(Procedure<? super T> procedure)
ImmutableSortedSet<T>
MutableSortedSet. toImmutable()
Returns an immutable copy of this set.ImmutableSortedSet<T>
SortedSetIterable. toImmutable()
Converts the SortedSetIterable to an immutable implementation.default ImmutableSortedSet<T>
ImmutableSortedSet. toImmutableSortedSet()
default ImmutableSortedSet<T>
MutableSortedSet. toImmutableSortedSet()
ImmutableSortedSet<T>
ImmutableSortedSet. toReversed()
ImmutableSortedSet<T>
ImmutableSortedSet. union(SetIterable<? extends T> set)
ImmutableSortedSet<Pair<T,java.lang.Integer>>
ImmutableSortedSet. zipWithIndex()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
ImmutableEmptySortedBag. distinct()
ImmutableSortedSet<T>
ImmutableSortedBagImpl. distinct()
ImmutableSortedSet<T>
ImmutableEmptySortedBag. selectUnique()
ImmutableSortedSet<Pair<T,java.lang.Integer>>
AbstractImmutableSortedBag. zipWithIndex()
ImmutableSortedSet<Pair<T,java.lang.Integer>>
ImmutableEmptySortedBag. zipWithIndex()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
AbstractSynchronizedRichIterable. toImmutableSortedSet()
ImmutableSortedSet<T>
AbstractSynchronizedRichIterable. toImmutableSortedSet(java.util.Comparator<? super T> comparator)
<V extends java.lang.Comparable<? super V>>
ImmutableSortedSet<T>AbstractSynchronizedRichIterable. toImmutableSortedSetBy(Function<? super T,? extends V> function)
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
AbstractMultiReaderMutableCollection. toImmutableSortedSet()
ImmutableSortedSet<T>
AbstractMultiReaderMutableCollection. toImmutableSortedSet(java.util.Comparator<? super T> comparator)
<V extends java.lang.Comparable<? super V>>
ImmutableSortedSet<T>AbstractMultiReaderMutableCollection. toImmutableSortedSetBy(Function<? super T,? extends V> function)
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableSortedSet Modifier and Type Method Description static <T> java.util.stream.Collector<T,?,ImmutableSortedSet<T>>
Collectors2. toImmutableSortedSet()
Returns the elements as an ImmutableSortedSet.static <T> java.util.stream.Collector<T,?,ImmutableSortedSet<T>>
Collectors2. toImmutableSortedSet(java.util.Comparator<? super T> comparator)
Returns the elements as an ImmutableSortedSet using the specified comparator.static <T,V extends java.lang.Comparable<? super V>>
java.util.stream.Collector<T,?,ImmutableSortedSet<T>>Collectors2. toImmutableSortedSetBy(Function<? super T,? extends V> function)
Returns the elements as a ImmutableSortedSet using the specified function to compare each element. -
Uses of ImmutableSortedSet in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return ImmutableSortedSet Modifier and Type Method Description static <T> ImmutableSortedSet<T>
Iterables. iSortedSet()
static <T> ImmutableSortedSet<T>
Iterables. iSortedSet(java.util.Comparator<? super T> comparator)
static <T> ImmutableSortedSet<T>
Iterables. iSortedSet(java.util.Comparator<? super T> comparator, T... elements)
static <T> ImmutableSortedSet<T>
Iterables. iSortedSet(T... elements)
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<V>
SynchronizedByteObjectMap. toImmutableSortedSet()
ImmutableSortedSet<V>
SynchronizedByteObjectMap. toImmutableSortedSet(java.util.Comparator<? super V> comparator)
ImmutableSortedSet<V>
SynchronizedCharObjectMap. toImmutableSortedSet()
ImmutableSortedSet<V>
SynchronizedCharObjectMap. toImmutableSortedSet(java.util.Comparator<? super V> comparator)
ImmutableSortedSet<V>
SynchronizedDoubleObjectMap. toImmutableSortedSet()
ImmutableSortedSet<V>
SynchronizedDoubleObjectMap. toImmutableSortedSet(java.util.Comparator<? super V> comparator)
ImmutableSortedSet<V>
SynchronizedFloatObjectMap. toImmutableSortedSet()
ImmutableSortedSet<V>
SynchronizedFloatObjectMap. toImmutableSortedSet(java.util.Comparator<? super V> comparator)
ImmutableSortedSet<V>
SynchronizedIntObjectMap. toImmutableSortedSet()
ImmutableSortedSet<V>
SynchronizedIntObjectMap. toImmutableSortedSet(java.util.Comparator<? super V> comparator)
ImmutableSortedSet<V>
SynchronizedLongObjectMap. toImmutableSortedSet()
ImmutableSortedSet<V>
SynchronizedLongObjectMap. toImmutableSortedSet(java.util.Comparator<? super V> comparator)
ImmutableSortedSet<V>
SynchronizedShortObjectMap. toImmutableSortedSet()
ImmutableSortedSet<V>
SynchronizedShortObjectMap. toImmutableSortedSet(java.util.Comparator<? super V> comparator)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedSet<V>SynchronizedByteObjectMap. toImmutableSortedSetBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedSet<V>SynchronizedCharObjectMap. toImmutableSortedSetBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedSet<V>SynchronizedDoubleObjectMap. toImmutableSortedSetBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedSet<V>SynchronizedFloatObjectMap. toImmutableSortedSetBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedSet<V>SynchronizedIntObjectMap. toImmutableSortedSetBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedSet<V>SynchronizedLongObjectMap. toImmutableSortedSetBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedSet<V>SynchronizedShortObjectMap. toImmutableSortedSetBy(Function<? super V,? extends VV> function)
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return ImmutableSortedSet Modifier and Type Method Description protected ImmutableSortedSet<V>
ImmutableSortedSetMultimapImpl. createCollection()
Constructor parameters in org.eclipse.collections.impl.multimap.set.sorted with type arguments of type ImmutableSortedSet Constructor Description ImmutableSortedSetMultimapImpl(ImmutableMap<K,ImmutableSortedSet<V>> map)
ImmutableSortedSetMultimapImpl(ImmutableMap<K,ImmutableSortedSet<V>> map, java.util.Comparator<? super V> comparator)
ImmutableSortedSetMultimapImpl(MutableMap<K,ImmutableSortedSet<V>> map)
ImmutableSortedSetMultimapImpl(MutableMap<K,ImmutableSortedSet<V>> map, java.util.Comparator<? super V> comparator)
ImmutableSortedSetMultimapSerializationProxy(ImmutableMap<K,ImmutableSortedSet<V>> map, java.util.Comparator<? super V> comparator)
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.partition.set.sorted
Fields in org.eclipse.collections.impl.partition.set.sorted declared as ImmutableSortedSet Modifier and Type Field Description private ImmutableSortedSet<T>
PartitionImmutableSortedSetImpl. rejected
private ImmutableSortedSet<T>
PartitionImmutableSortedSetImpl. selected
Methods in org.eclipse.collections.impl.partition.set.sorted that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
PartitionImmutableSortedSetImpl. getRejected()
ImmutableSortedSet<T>
PartitionImmutableSortedSetImpl. getSelected()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement ImmutableSortedSet Modifier and Type Class Description (package private) class
AbstractImmutableSortedSet<T>
This class is the parent class for all ImmutableSortedSets.(package private) class
ImmutableEmptySortedSet<T>
This is a zero elementImmutableSortedSet
which is created by calling the SortedSets.immutable.empty() method.(package private) class
ImmutableTreeSet<T>
Fields in org.eclipse.collections.impl.set.sorted.immutable declared as ImmutableSortedSet Modifier and Type Field Description (package private) static ImmutableSortedSet<?>
ImmutableEmptySortedSet. INSTANCE
private ImmutableSortedSet<T>
ImmutableSortedSetSerializationProxy. set
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
AbstractImmutableSortedSet. difference(SetIterable<? extends T> subtrahendSet)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. distinct()
ImmutableSortedSet<T>
ImmutableEmptySortedSet. drop(int count)
ImmutableSortedSet<T>
ImmutableTreeSet. drop(int count)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. dropWhile(Predicate<? super T> predicate)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. empty()
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. empty(java.util.Comparator<? super T> comparator)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. intersect(SetIterable<? extends T> set)
static <T> ImmutableSortedSet<T>
ImmutableTreeSet. newSet(java.util.SortedSet<? super T> set)
static <T> ImmutableSortedSet<T>
ImmutableTreeSet. newSetFromIterable(java.lang.Iterable<? extends T> iterable)
static <T> ImmutableSortedSet<T>
ImmutableTreeSet. newSetFromIterable(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> iterable)
static <T> ImmutableSortedSet<T>
ImmutableTreeSet. newSetWith(java.util.Comparator<? super T> comparator, T... elements)
static <T> ImmutableSortedSet<T>
ImmutableTreeSet. newSetWith(T... elements)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. newWith(T element)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. newWith(T element)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. newWithout(T element)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. newWithout(T element)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. newWithoutAll(java.lang.Iterable<? extends T> elements)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. of()
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. of(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. of(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. of(T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. ofAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. ofAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. ofSortedSet(java.util.SortedSet<T> set)
ImmutableSortedSet<SortedSetIterable<T>>
AbstractImmutableSortedSet. powerSet()
ImmutableSortedSet<T>
AbstractImmutableSortedSet. reject(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. reject(Predicate<? super T> predicate)
<P> ImmutableSortedSet<T>
AbstractImmutableSortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ImmutableSortedSet<T>
ImmutableEmptySortedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. select(Predicate<? super T> predicate)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. select(Predicate<? super T> predicate)
<S> ImmutableSortedSet<S>
AbstractImmutableSortedSet. selectInstancesOf(java.lang.Class<S> clazz)
<S> ImmutableSortedSet<S>
ImmutableEmptySortedSet. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSortedSet<T>
AbstractImmutableSortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ImmutableSortedSet<T>
ImmutableEmptySortedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. symmetricDifference(SetIterable<? extends T> setB)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. take(int count)
ImmutableSortedSet<T>
ImmutableTreeSet. take(int count)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. takeWhile(Predicate<? super T> predicate)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. tap(Procedure<? super T> procedure)
ImmutableSortedSet<T>
ImmutableEmptySortedSet. tap(Procedure<? super T> procedure)
ImmutableSortedSet<T>
AbstractImmutableSortedSet. toImmutable()
ImmutableSortedSet<T>
AbstractImmutableSortedSet. toReversed()
ImmutableSortedSet<T>
AbstractImmutableSortedSet. union(SetIterable<? extends T> set)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. with()
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. with(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. with(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. with(T... items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. withAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. withAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> iterable)
<T> ImmutableSortedSet<T>
ImmutableSortedSetFactoryImpl. withSortedSet(java.util.SortedSet<T> set)
ImmutableSortedSet<Pair<T,java.lang.Integer>>
AbstractImmutableSortedSet. zipWithIndex()
Constructors in org.eclipse.collections.impl.set.sorted.immutable with parameters of type ImmutableSortedSet Constructor Description ImmutableSortedSetSerializationProxy(ImmutableSortedSet<T> set)
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>
SortedSetAdapter. toImmutable()
ImmutableSortedSet<T>
SynchronizedSortedSet. toImmutable()
ImmutableSortedSet<T>
TreeSortedSet. toImmutable()
ImmutableSortedSet<T>
UnmodifiableSortedSet. toImmutable()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return ImmutableSortedSet Modifier and Type Method Description static <T> ImmutableSortedSet<ImmutableSortedSet<T>>
SortedSetIterables. immutablePowerSet(java.util.SortedSet<T> set)
Returns an Immutable version of powerset where the inner sets are also immutable.Methods in org.eclipse.collections.impl.utility.internal that return types with arguments of type ImmutableSortedSet Modifier and Type Method Description static <T> ImmutableSortedSet<ImmutableSortedSet<T>>
SortedSetIterables. immutablePowerSet(java.util.SortedSet<T> set)
Returns an Immutable version of powerset where the inner sets are also immutable.
-