Uses of Interface
org.eclipse.collections.api.set.sorted.ImmutableSortedSet
Packages that use ImmutableSortedSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains
ImmutableSortedSetFactory
and MutableSortedSetFactory
.This package contains interfaces for
SortedSetMultimap
.This package contains interfaces for
PartitionSortedSet
.This package contains interfaces for sorted set API.
This package contains implementations of the
MutableCollection
interface.This package contains static utilities for creating mutable and immutable collection factories.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
SortedSetMultimap
interface.This package contains implementations of the
PartitionSet
interface.This package contains implementations of
ImmutableSortedSet
.This package contains implementations of
MutableSortedSet
.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 ImmutableSortedSetModifier and TypeMethodDescriptiondefault ImmutableSortedSet
<T> RichIterable.toImmutableSortedSet()
Converts the RichIterable to the default ImmutableSortedSet implementation.default ImmutableSortedSet
<T> RichIterable.toImmutableSortedSet
(Comparator<? super T> comparator) Converts the collection to an ImmutableSortedSet implementation and sorts it using the specified comparator.default <V extends 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 ImmutableSortedSetModifier and TypeMethodDescriptionImmutableSortedBag.distinct()
default ImmutableSortedSet
<T> ImmutableSortedBag.selectUnique()
ImmutableSortedBag.zipWithIndex()
-
Uses of ImmutableSortedSet in org.eclipse.collections.api.factory.set.sorted
Methods in org.eclipse.collections.api.factory.set.sorted that return ImmutableSortedSetModifier and TypeMethodDescription<T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.empty()
<T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.empty
(Comparator<? super T> comparator) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.of()
Same asImmutableSortedSetFactory.empty()
.<T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.of
(Comparator<? super T> comparator) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.of
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.of
(T... items) <T> ImmutableSortedSet
<T> <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.ofSortedSet
(SortedSet<T> set) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.with()
Same asImmutableSortedSetFactory.empty()
.<T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.with
(Comparator<? super T> comparator) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.with
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.with
(T... items) <T> ImmutableSortedSet
<T> <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.withAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactory.withSortedSet
(SortedSet<T> set) -
Uses of ImmutableSortedSet in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return ImmutableSortedSet -
Uses of ImmutableSortedSet in org.eclipse.collections.api.partition.set.sorted
Methods in org.eclipse.collections.api.partition.set.sorted that return ImmutableSortedSetModifier and TypeMethodDescriptionPartitionImmutableSortedSet.getRejected()
PartitionImmutableSortedSet.getSelected()
-
Uses of ImmutableSortedSet in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableSortedSetModifier and TypeMethodDescriptionImmutableSortedSet.difference
(SetIterable<? extends T> subtrahendSet) ImmutableSortedSet.distinct()
ImmutableSortedSet.drop
(int count) ImmutableSortedSet.intersect
(SetIterable<? extends T> set) ImmutableSortedSet.newWithAll
(Iterable<? extends T> elements) ImmutableSortedSet.newWithout
(T element) ImmutableSortedSet.newWithoutAll
(Iterable<? extends T> elements) ImmutableSortedSet.powerSet()
<P> ImmutableSortedSet
<T> ImmutableSortedSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> ImmutableSortedSet
<S> ImmutableSortedSet.selectInstancesOf
(Class<S> clazz) <P> ImmutableSortedSet
<T> ImmutableSortedSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSortedSet.symmetricDifference
(SetIterable<? extends T> setB) ImmutableSortedSet.take
(int count) MutableSortedSet.toImmutable()
Returns an immutable copy of this set.SortedSetIterable.toImmutable()
Converts the SortedSetIterable to an immutable implementation.default ImmutableSortedSet
<T> ImmutableSortedSet.toImmutableSortedSet()
default ImmutableSortedSet
<T> MutableSortedSet.toImmutableSortedSet()
ImmutableSortedSet.toReversed()
ImmutableSortedSet.union
(SetIterable<? extends T> set) ImmutableSortedSet.zipWithIndex()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableSortedSetModifier and TypeMethodDescriptionImmutableEmptySortedBag.distinct()
ImmutableSortedBagImpl.distinct()
ImmutableEmptySortedBag.selectUnique()
AbstractImmutableSortedBag.zipWithIndex()
ImmutableEmptySortedBag.zipWithIndex()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ImmutableSortedSetModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.toImmutableSortedSet()
AbstractSynchronizedRichIterable.toImmutableSortedSet
(Comparator<? super T> comparator) <V extends 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 ImmutableSortedSetModifier and TypeMethodDescriptionAbstractMultiReaderMutableCollection.toImmutableSortedSet()
AbstractMultiReaderMutableCollection.toImmutableSortedSet
(Comparator<? super T> comparator) <V extends 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 ImmutableSortedSetModifier and TypeMethodDescriptionstatic <T> Collector
<T, ?, ImmutableSortedSet<T>> Collectors2.toImmutableSortedSet()
Returns the elements as an ImmutableSortedSet.static <T> Collector
<T, ?, ImmutableSortedSet<T>> Collectors2.toImmutableSortedSet
(Comparator<? super T> comparator) Returns the elements as an ImmutableSortedSet using the specified comparator.static <T,
V extends Comparable<? super V>>
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 ImmutableSortedSetModifier and TypeMethodDescriptionstatic <T> ImmutableSortedSet
<T> Iterables.iSortedSet()
static <T> ImmutableSortedSet
<T> Iterables.iSortedSet
(Comparator<? super T> comparator) static <T> ImmutableSortedSet
<T> Iterables.iSortedSet
(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 ImmutableSortedSetModifier and TypeMethodDescriptionSynchronizedByteObjectMap.toImmutableSortedSet()
SynchronizedByteObjectMap.toImmutableSortedSet
(Comparator<? super V> comparator) SynchronizedCharObjectMap.toImmutableSortedSet()
SynchronizedCharObjectMap.toImmutableSortedSet
(Comparator<? super V> comparator) SynchronizedDoubleObjectMap.toImmutableSortedSet()
SynchronizedDoubleObjectMap.toImmutableSortedSet
(Comparator<? super V> comparator) SynchronizedFloatObjectMap.toImmutableSortedSet()
SynchronizedFloatObjectMap.toImmutableSortedSet
(Comparator<? super V> comparator) SynchronizedIntObjectMap.toImmutableSortedSet()
SynchronizedIntObjectMap.toImmutableSortedSet
(Comparator<? super V> comparator) SynchronizedLongObjectMap.toImmutableSortedSet()
SynchronizedLongObjectMap.toImmutableSortedSet
(Comparator<? super V> comparator) SynchronizedShortObjectMap.toImmutableSortedSet()
SynchronizedShortObjectMap.toImmutableSortedSet
(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
ImmutableSortedSet<V> SynchronizedByteObjectMap.toImmutableSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedSet<V> SynchronizedCharObjectMap.toImmutableSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedSet<V> SynchronizedDoubleObjectMap.toImmutableSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedSet<V> SynchronizedFloatObjectMap.toImmutableSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedSet<V> SynchronizedIntObjectMap.toImmutableSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedSet<V> SynchronizedLongObjectMap.toImmutableSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends 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 ImmutableSortedSetModifier and TypeMethodDescriptionprotected ImmutableSortedSet
<V> ImmutableSortedSetMultimapImpl.createCollection()
Constructor parameters in org.eclipse.collections.impl.multimap.set.sorted with type arguments of type ImmutableSortedSetModifierConstructorDescription(package private)
ImmutableSortedSetMultimapImpl
(ImmutableMap<K, ImmutableSortedSet<V>> map, Comparator<? super V> comparator) (package private)
ImmutableSortedSetMultimapImpl
(MutableMap<K, ImmutableSortedSet<V>> map, Comparator<? super V> comparator) private
ImmutableSortedSetMultimapSerializationProxy
(ImmutableMap<K, ImmutableSortedSet<V>> map, 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 ImmutableSortedSetModifier and TypeFieldDescriptionprivate final ImmutableSortedSet
<T> PartitionImmutableSortedSetImpl.rejected
private final ImmutableSortedSet
<T> PartitionImmutableSortedSetImpl.selected
Methods in org.eclipse.collections.impl.partition.set.sorted that return ImmutableSortedSetModifier and TypeMethodDescriptionPartitionImmutableSortedSetImpl.getRejected()
PartitionImmutableSortedSetImpl.getSelected()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement ImmutableSortedSetModifier and TypeClassDescription(package private) class
This class is the parent class for all ImmutableSortedSets.(package private) final class
This is a zero elementImmutableSortedSet
which is created by calling the SortedSets.immutable.empty() method.(package private) final class
Fields in org.eclipse.collections.impl.set.sorted.immutable declared as ImmutableSortedSetModifier and TypeFieldDescription(package private) static final ImmutableSortedSet
<?> ImmutableEmptySortedSet.INSTANCE
private ImmutableSortedSet
<T> ImmutableSortedSetSerializationProxy.set
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableSortedSetModifier and TypeMethodDescriptionAbstractImmutableSortedSet.difference
(SetIterable<? extends T> subtrahendSet) AbstractImmutableSortedSet.distinct()
ImmutableEmptySortedSet.drop
(int count) ImmutableTreeSet.drop
(int count) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.empty()
<T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.empty
(Comparator<? super T> comparator) AbstractImmutableSortedSet.intersect
(SetIterable<? extends T> set) static <T> ImmutableSortedSet
<T> static <T> ImmutableSortedSet
<T> ImmutableTreeSet.newSetFromIterable
(Iterable<? extends T> iterable) static <T> ImmutableSortedSet
<T> ImmutableTreeSet.newSetFromIterable
(Comparator<? super T> comparator, Iterable<? extends T> iterable) static <T> ImmutableSortedSet
<T> ImmutableTreeSet.newSetWith
(Comparator<? super T> comparator, T... elements) static <T> ImmutableSortedSet
<T> ImmutableTreeSet.newSetWith
(T... elements) AbstractImmutableSortedSet.newWithAll
(Iterable<? extends T> elements) ImmutableEmptySortedSet.newWithAll
(Iterable<? extends T> elements) AbstractImmutableSortedSet.newWithout
(T element) ImmutableEmptySortedSet.newWithout
(T element) AbstractImmutableSortedSet.newWithoutAll
(Iterable<? extends T> elements) ImmutableEmptySortedSet.newWithoutAll
(Iterable<? extends T> elements) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.of()
<T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.of
(Comparator<? super T> comparator) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.of
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.of
(T... items) <T> ImmutableSortedSet
<T> <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.ofSortedSet
(SortedSet<T> set) AbstractImmutableSortedSet.powerSet()
<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) <S> ImmutableSortedSet
<S> AbstractImmutableSortedSet.selectInstancesOf
(Class<S> clazz) <S> ImmutableSortedSet
<S> ImmutableEmptySortedSet.selectInstancesOf
(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) AbstractImmutableSortedSet.symmetricDifference
(SetIterable<? extends T> setB) ImmutableEmptySortedSet.take
(int count) ImmutableTreeSet.take
(int count) AbstractImmutableSortedSet.toImmutable()
AbstractImmutableSortedSet.toReversed()
AbstractImmutableSortedSet.union
(SetIterable<? extends T> set) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.with()
<T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.with
(Comparator<? super T> comparator) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.with
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.with
(T... items) <T> ImmutableSortedSet
<T> <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.withAll
(Comparator<? super T> comparator, Iterable<? extends T> iterable) <T> ImmutableSortedSet
<T> ImmutableSortedSetFactoryImpl.withSortedSet
(SortedSet<T> set) AbstractImmutableSortedSet.zipWithIndex()
Constructors in org.eclipse.collections.impl.set.sorted.immutable with parameters of type ImmutableSortedSetModifierConstructorDescription(package private)
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return ImmutableSortedSetModifier and TypeMethodDescriptionSortedSetAdapter.toImmutable()
SynchronizedSortedSet.toImmutable()
TreeSortedSet.toImmutable()
UnmodifiableSortedSet.toImmutable()
-
Uses of ImmutableSortedSet in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return ImmutableSortedSetModifier and TypeMethodDescriptionstatic <T> ImmutableSortedSet
<ImmutableSortedSet<T>> SortedSetIterables.immutablePowerSet
(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 ImmutableSortedSetModifier and TypeMethodDescriptionstatic <T> ImmutableSortedSet
<ImmutableSortedSet<T>> SortedSetIterables.immutablePowerSet
(SortedSet<T> set) Returns an Immutable version of powerset where the inner sets are also immutable.