Uses of Interface
org.eclipse.collections.api.set.sorted.MutableSortedSet
Packages that use MutableSortedSet
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 for Eclipse Collections API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of
MutableSortedBag
.This package contains implementations of the
MutableBiMap
interface.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 immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
SortedSetMultimap
interface.This package contains implementations of the
PartitionSet
interface.This package contains implementations of
MutableSortedSet
.This package contains implementations of the
ImmutableStack
interface.This package contains implementations of the
MutableStack
interface.This package contains
SerializeTestHelper
and Verify
classes.This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableSortedSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableSortedSetModifier and TypeMethodDescriptionParallelIterable.toSortedSet()
ParallelIterable.toSortedSet
(Comparator<? super T> comparator) RichIterable.toSortedSet()
Converts the collection to a MutableSortedSet implementation and sorts it using the natural order of the elements.RichIterable.toSortedSet
(Comparator<? super T> comparator) Converts the collection to a MutableSortedSet implementation and sorts it using the specified comparator.<V extends Comparable<? super V>>
MutableSortedSet<T> ParallelIterable.toSortedSetBy
(Function<? super T, ? extends V> function) default <V extends Comparable<? super V>>
MutableSortedSet<T> RichIterable.toSortedSetBy
(Function<? super T, ? extends V> function) Converts the collection to a MutableSortedSet implementation and sorts it based on the natural order of the attribute returned byfunction
. -
Uses of MutableSortedSet in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableSortedSetModifier and TypeMethodDescriptionMutableSortedBag.distinct()
default MutableSortedSet
<T> MutableSortedBag.selectUnique()
MutableSortedBag.zipWithIndex()
-
Uses of MutableSortedSet in org.eclipse.collections.api.factory.set.sorted
Methods in org.eclipse.collections.api.factory.set.sorted that return MutableSortedSetModifier and TypeMethodDescription<T> MutableSortedSet
<T> MutableSortedSetFactory.empty()
<T> MutableSortedSet
<T> MutableSortedSetFactory.of()
Same asMutableSortedSetFactory.empty()
.<T> MutableSortedSet
<T> MutableSortedSetFactory.of
(Comparator<? super T> comparator) <T> MutableSortedSet
<T> MutableSortedSetFactory.of
(Comparator<? super T> comparator, T... items) <T> MutableSortedSet
<T> MutableSortedSetFactory.of
(T... items) <T> MutableSortedSet
<T> <T> MutableSortedSet
<T> MutableSortedSetFactory.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> MutableSortedSet
<T> MutableSortedSetFactory.with()
Same asMutableSortedSetFactory.empty()
.<T> MutableSortedSet
<T> MutableSortedSetFactory.with
(Comparator<? super T> comparator) <T> MutableSortedSet
<T> MutableSortedSetFactory.with
(Comparator<? super T> comparator, T... items) <T> MutableSortedSet
<T> MutableSortedSetFactory.with
(T... items) <T> MutableSortedSet
<T> <T> MutableSortedSet
<T> MutableSortedSetFactory.withAll
(Comparator<? super T> comparator, Iterable<? extends T> items) -
Uses of MutableSortedSet in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return MutableSortedSetModifier and TypeMethodDescriptionMutableSortedSetMultimap.getIfAbsentPutAll
(K key, Iterable<? extends V> values) MutableSortedSetMultimap.replaceValues
(K key, Iterable<? extends V> values) -
Uses of MutableSortedSet in org.eclipse.collections.api.partition.set.sorted
Methods in org.eclipse.collections.api.partition.set.sorted that return MutableSortedSetModifier and TypeMethodDescriptionPartitionMutableSortedSet.getRejected()
PartitionMutableSortedSet.getSelected()
-
Uses of MutableSortedSet in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableSortedSetModifier and TypeMethodDescriptionMutableSortedSet.asSynchronized()
MutableSortedSet.asUnmodifiable()
Returns an unmodifiable view of the set.MutableSortedSet.clone()
MutableSortedSet.difference
(SetIterable<? extends T> subtrahendSet) MutableSortedSet.distinct()
MutableSortedSet.drop
(int count) MutableSortedSet.intersect
(SetIterable<? extends T> set) MutableSortedSet.newEmpty()
MutableSortedSet.powerSet()
<P> MutableSortedSet
<T> MutableSortedSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> MutableSortedSet
<S> MutableSortedSet.selectInstancesOf
(Class<S> clazz) <P> MutableSortedSet
<T> MutableSortedSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedSet.symmetricDifference
(SetIterable<? extends T> setB) MutableSortedSet.take
(int count) MutableSortedSet.toReversed()
MutableSortedSet.union
(SetIterable<? extends T> set) default MutableSortedSet
<T> default MutableSortedSet
<T> default MutableSortedSet
<T> default MutableSortedSet
<T> MutableSortedSet.withoutAll
(Iterable<? extends T> elements) MutableSortedSet.zipWithIndex()
-
Uses of MutableSortedSet in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return MutableSortedSetModifier and TypeMethodDescriptionAbstractRichIterable.toSortedSet()
AbstractRichIterable.toSortedSet
(Comparator<? super T> comparator) UnmodifiableRichIterable.toSortedSet()
UnmodifiableRichIterable.toSortedSet
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableSortedSet<T> AbstractRichIterable.toSortedSetBy
(Function<? super T, ? extends V> function) -
Uses of MutableSortedSet in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag that return MutableSortedSetModifier and TypeMethodDescriptionAbstractBag.toSortedSet()
AbstractBag.toSortedSet
(Comparator<? super T> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return MutableSortedSetModifier and TypeMethodDescriptionImmutableHashBag.toSortedSet()
ImmutableHashBag.toSortedSet
(Comparator<? super T> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return MutableSortedSetModifier and TypeMethodDescriptionImmutableSortedBagImpl.toSortedSet()
ImmutableSortedBagImpl.toSortedSet
(Comparator<? super T> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableSortedSetModifier and TypeMethodDescriptionSynchronizedSortedBag.distinct()
TreeBag.distinct()
UnmodifiableSortedBag.distinct()
SynchronizedSortedBag.selectUnique()
UnmodifiableSortedBag.selectUnique()
SynchronizedSortedBag.zipWithIndex()
TreeBag.zipWithIndex()
UnmodifiableSortedBag.zipWithIndex()
-
Uses of MutableSortedSet in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap that return MutableSortedSetModifier and TypeMethodDescriptionAbstractBiMap.toSortedSet()
AbstractBiMap.toSortedSet
(Comparator<? super V> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableSortedSetModifier and TypeMethodDescriptionUnmodifiableBiMap.toSortedSet()
UnmodifiableBiMap.toSortedSet
(Comparator<? super V> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return MutableSortedSetModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.toSortedSet()
AbstractSynchronizedRichIterable.toSortedSet
(Comparator<? super T> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableSortedSetModifier and TypeMethodDescriptionAbstractCollectionAdapter.toSortedSet()
AbstractCollectionAdapter.toSortedSet
(Comparator<? super T> comparator) AbstractMultiReaderMutableCollection.toSortedSet()
AbstractMultiReaderMutableCollection.toSortedSet
(Comparator<? super T> comparator) AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toSortedSet()
AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toSortedSet
(Comparator<? super T> comparator) AbstractUnmodifiableMutableCollection.toSortedSet()
AbstractUnmodifiableMutableCollection.toSortedSet
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableSortedSet<T> AbstractMultiReaderMutableCollection.toSortedSetBy
(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableSortedSet<T> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.toSortedSetBy
(Function<? super T, ? extends V> function) -
Uses of MutableSortedSet in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableSortedSetModifier and TypeMethodDescriptionstatic <T> Collector
<T, ?, MutableSortedSet<T>> Collectors2.toSortedSet()
Returns the elements as a MutableSortedSet.static <T> Collector
<T, ?, MutableSortedSet<T>> Collectors2.toSortedSet
(Comparator<? super T> comparator) Returns the elements as a MutableSortedSet using the specified comparator.static <T,
V extends Comparable<? super V>>
Collector<T, ?, MutableSortedSet<T>> Collectors2.toSortedSetBy
(Function<? super T, ? extends V> function) Returns the elements as a MutableSortedSet using the specified function to compare each element. -
Uses of MutableSortedSet in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableSortedSetModifier and TypeMethodDescriptionstatic <T> MutableSortedSet
<T> static <T> MutableSortedSet
<T> Iterables.mSortedSet()
static <T> MutableSortedSet
<T> Iterables.mSortedSet
(Comparator<? super T> comparator) static <T> MutableSortedSet
<T> Iterables.mSortedSet
(Comparator<? super T> comparator, T... elements) static <T> MutableSortedSet
<T> Iterables.mSortedSet
(T... elements) -
Uses of MutableSortedSet in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return MutableSortedSetModifier and TypeMethodDescriptionAbstractMultiReaderParallelIterable.toSortedSet()
AbstractMultiReaderParallelIterable.toSortedSet
(Comparator<? super T> comparator) AbstractParallelIterable.toSortedSet()
AbstractParallelIterable.toSortedSet
(Comparator<? super T> comparator) AbstractSynchronizedParallelIterable.toSortedSet()
AbstractSynchronizedParallelIterable.toSortedSet
(Comparator<? super T> comparator) NonParallelIterable.toSortedSet()
NonParallelIterable.toSortedSet
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableSortedSet<T> AbstractMultiReaderParallelIterable.toSortedSetBy
(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableSortedSet<T> AbstractParallelIterable.toSortedSetBy
(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableSortedSet<T> AbstractSynchronizedParallelIterable.toSortedSetBy
(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableSortedSet<T> NonParallelIterable.toSortedSetBy
(Function<? super T, ? extends V> function) -
Uses of MutableSortedSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableSortedSetModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.toSortedSet()
ImmutableByteObjectEmptyMap.toSortedSet
(Comparator<? super V> comparator) ImmutableByteObjectHashMap.toSortedSet()
ImmutableByteObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ImmutableByteObjectSingletonMap.toSortedSet()
ImmutableByteObjectSingletonMap.toSortedSet
(Comparator<? super V> comparator) ImmutableCharObjectEmptyMap.toSortedSet()
ImmutableCharObjectEmptyMap.toSortedSet
(Comparator<? super V> comparator) ImmutableCharObjectHashMap.toSortedSet()
ImmutableCharObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ImmutableCharObjectSingletonMap.toSortedSet()
ImmutableCharObjectSingletonMap.toSortedSet
(Comparator<? super V> comparator) ImmutableDoubleObjectEmptyMap.toSortedSet()
ImmutableDoubleObjectEmptyMap.toSortedSet
(Comparator<? super V> comparator) ImmutableDoubleObjectHashMap.toSortedSet()
ImmutableDoubleObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ImmutableDoubleObjectSingletonMap.toSortedSet()
ImmutableDoubleObjectSingletonMap.toSortedSet
(Comparator<? super V> comparator) ImmutableFloatObjectEmptyMap.toSortedSet()
ImmutableFloatObjectEmptyMap.toSortedSet
(Comparator<? super V> comparator) ImmutableFloatObjectHashMap.toSortedSet()
ImmutableFloatObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ImmutableFloatObjectSingletonMap.toSortedSet()
ImmutableFloatObjectSingletonMap.toSortedSet
(Comparator<? super V> comparator) ImmutableIntObjectEmptyMap.toSortedSet()
ImmutableIntObjectEmptyMap.toSortedSet
(Comparator<? super V> comparator) ImmutableIntObjectHashMap.toSortedSet()
ImmutableIntObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ImmutableIntObjectSingletonMap.toSortedSet()
ImmutableIntObjectSingletonMap.toSortedSet
(Comparator<? super V> comparator) ImmutableLongObjectEmptyMap.toSortedSet()
ImmutableLongObjectEmptyMap.toSortedSet
(Comparator<? super V> comparator) ImmutableLongObjectHashMap.toSortedSet()
ImmutableLongObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ImmutableLongObjectSingletonMap.toSortedSet()
ImmutableLongObjectSingletonMap.toSortedSet
(Comparator<? super V> comparator) ImmutableShortObjectEmptyMap.toSortedSet()
ImmutableShortObjectEmptyMap.toSortedSet
(Comparator<? super V> comparator) ImmutableShortObjectHashMap.toSortedSet()
ImmutableShortObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ImmutableShortObjectSingletonMap.toSortedSet()
ImmutableShortObjectSingletonMap.toSortedSet
(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableByteObjectEmptyMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableByteObjectHashMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableByteObjectSingletonMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableCharObjectEmptyMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableCharObjectHashMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableCharObjectSingletonMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableDoubleObjectEmptyMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableDoubleObjectHashMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableDoubleObjectSingletonMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableFloatObjectEmptyMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableFloatObjectHashMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableFloatObjectSingletonMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableIntObjectEmptyMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableIntObjectHashMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableIntObjectSingletonMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableLongObjectEmptyMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableLongObjectHashMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableLongObjectSingletonMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableShortObjectEmptyMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableShortObjectHashMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> ImmutableShortObjectSingletonMap.toSortedSetBy
(Function<? super V, ? extends VV> function) -
Uses of MutableSortedSet in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableSortedSetModifier and TypeMethodDescriptionUnmodifiableMutableMap.toSortedSet()
UnmodifiableMutableMap.toSortedSet
(Comparator<? super V> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableSortedSetModifier and TypeMethodDescriptionByteObjectHashMap.toSortedSet()
ByteObjectHashMap.toSortedSet
(Comparator<? super V> comparator) CharObjectHashMap.toSortedSet()
CharObjectHashMap.toSortedSet
(Comparator<? super V> comparator) DoubleObjectHashMap.toSortedSet()
DoubleObjectHashMap.toSortedSet
(Comparator<? super V> comparator) FloatObjectHashMap.toSortedSet()
FloatObjectHashMap.toSortedSet
(Comparator<? super V> comparator) IntObjectHashMap.toSortedSet()
IntObjectHashMap.toSortedSet
(Comparator<? super V> comparator) LongObjectHashMap.toSortedSet()
LongObjectHashMap.toSortedSet
(Comparator<? super V> comparator) ShortObjectHashMap.toSortedSet()
ShortObjectHashMap.toSortedSet
(Comparator<? super V> comparator) SynchronizedByteObjectMap.toSortedSet()
SynchronizedByteObjectMap.toSortedSet
(Comparator<? super V> comparator) SynchronizedCharObjectMap.toSortedSet()
SynchronizedCharObjectMap.toSortedSet
(Comparator<? super V> comparator) SynchronizedDoubleObjectMap.toSortedSet()
SynchronizedDoubleObjectMap.toSortedSet
(Comparator<? super V> comparator) SynchronizedFloatObjectMap.toSortedSet()
SynchronizedFloatObjectMap.toSortedSet
(Comparator<? super V> comparator) SynchronizedIntObjectMap.toSortedSet()
SynchronizedIntObjectMap.toSortedSet
(Comparator<? super V> comparator) SynchronizedLongObjectMap.toSortedSet()
SynchronizedLongObjectMap.toSortedSet
(Comparator<? super V> comparator) SynchronizedShortObjectMap.toSortedSet()
SynchronizedShortObjectMap.toSortedSet
(Comparator<? super V> comparator) UnmodifiableByteObjectMap.toSortedSet()
UnmodifiableByteObjectMap.toSortedSet
(Comparator<? super V> comparator) UnmodifiableCharObjectMap.toSortedSet()
UnmodifiableCharObjectMap.toSortedSet
(Comparator<? super V> comparator) UnmodifiableDoubleObjectMap.toSortedSet()
UnmodifiableDoubleObjectMap.toSortedSet
(Comparator<? super V> comparator) UnmodifiableFloatObjectMap.toSortedSet()
UnmodifiableFloatObjectMap.toSortedSet
(Comparator<? super V> comparator) UnmodifiableIntObjectMap.toSortedSet()
UnmodifiableIntObjectMap.toSortedSet
(Comparator<? super V> comparator) UnmodifiableLongObjectMap.toSortedSet()
UnmodifiableLongObjectMap.toSortedSet
(Comparator<? super V> comparator) UnmodifiableShortObjectMap.toSortedSet()
UnmodifiableShortObjectMap.toSortedSet
(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
MutableSortedSet<V> SynchronizedByteObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> SynchronizedCharObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> SynchronizedDoubleObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> SynchronizedFloatObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> SynchronizedIntObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> SynchronizedLongObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> SynchronizedShortObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> UnmodifiableByteObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> UnmodifiableCharObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> UnmodifiableDoubleObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> UnmodifiableFloatObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> UnmodifiableIntObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> UnmodifiableLongObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedSet<V> UnmodifiableShortObjectMap.toSortedSetBy
(Function<? super V, ? extends VV> function) -
Uses of MutableSortedSet in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableSortedSetModifier and TypeMethodDescriptionUnmodifiableMutableOrderedMap.toSortedSet()
UnmodifiableMutableOrderedMap.toSortedSet
(Comparator<? super V> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableSortedSetModifier and TypeMethodDescriptionUnmodifiableTreeMap.toSortedSet()
UnmodifiableTreeMap.toSortedSet
(Comparator<? super V> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return MutableSortedSetModifier and TypeMethodDescriptionprotected MutableSortedSet
<V> SynchronizedPutTreeSortedSetMultimap.createCollection()
protected MutableSortedSet
<V> TreeSortedSetMultimap.createCollection()
SynchronizedSortedSetMultimap.getIfAbsentPutAll
(K key, Iterable<? extends V> values) SynchronizedSortedSetMultimap.replaceValues
(K key, Iterable<? extends V> values) Methods in org.eclipse.collections.impl.multimap.set.sorted that return types with arguments of type MutableSortedSetModifier and TypeMethodDescriptionprotected AbstractMutableMultimap
<K, V, MutableSortedSet<V>> ImmutableSortedSetMultimapImpl.ImmutableSortedSetMultimapSerializationProxy.createEmptyMutableMultimap()
protected MutableMap
<K, MutableSortedSet<V>> TreeSortedSetMultimap.createMap()
protected MutableMap
<K, MutableSortedSet<V>> TreeSortedSetMultimap.createMapWithKeyCount
(int keyCount) -
Uses of MutableSortedSet in org.eclipse.collections.impl.partition.set.sorted
Fields in org.eclipse.collections.impl.partition.set.sorted declared as MutableSortedSetModifier and TypeFieldDescriptionprivate final MutableSortedSet
<T> PartitionTreeSortedSet.rejected
private final MutableSortedSet
<T> PartitionTreeSortedSet.selected
Methods in org.eclipse.collections.impl.partition.set.sorted that return MutableSortedSetModifier and TypeMethodDescriptionPartitionTreeSortedSet.getRejected()
PartitionTreeSortedSet.getSelected()
-
Uses of MutableSortedSet in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement MutableSortedSetModifier and TypeClassDescriptionfinal class
This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.class
A synchronized view of aMutableSortedSet
.class
class
An unmodifiable view of a SortedSet.Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableSortedSetModifier and TypeMethodDescriptionstatic <T> MutableSortedSet
<T> SortedSetAdapter.asSynchronized()
SynchronizedSortedSet.asSynchronized()
TreeSortedSet.asSynchronized()
UnmodifiableSortedSet.asSynchronized()
SortedSetAdapter.asUnmodifiable()
SynchronizedSortedSet.asUnmodifiable()
TreeSortedSet.asUnmodifiable()
UnmodifiableSortedSet.asUnmodifiable()
SortedSetAdapter.clone()
SynchronizedSortedSet.clone()
SortedSetAdapter.difference
(SetIterable<? extends T> subtrahendSet) SynchronizedSortedSet.difference
(SetIterable<? extends T> subtrahendSet) UnmodifiableSortedSet.difference
(SetIterable<? extends T> subtrahendSet) SortedSetAdapter.distinct()
SynchronizedSortedSet.distinct()
TreeSortedSet.distinct()
UnmodifiableSortedSet.distinct()
SortedSetAdapter.drop
(int count) SynchronizedSortedSet.drop
(int count) TreeSortedSet.drop
(int count) UnmodifiableSortedSet.drop
(int count) <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.empty()
protected MutableSortedSet
<T> SynchronizedSortedSet.getDelegate()
protected MutableSortedSet
<T> UnmodifiableSortedSet.getSortedSet()
SortedSetAdapter.intersect
(SetIterable<? extends T> set) SynchronizedSortedSet.intersect
(SetIterable<? extends T> set) UnmodifiableSortedSet.intersect
(SetIterable<? extends T> set) SortedSetAdapter.newEmpty()
Deprecated.SynchronizedSortedSet.newEmpty()
UnmodifiableSortedSet.newEmpty()
<T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.of()
<T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.of
(Comparator<? super T> comparator) <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.of
(Comparator<? super T> comparator, T... items) <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.of
(T... items) static <E,
S extends SortedSet<E>>
MutableSortedSet<E> This method will take a MutableSortedSet and wrap it directly in a SynchronizedSortedSet.<T> MutableSortedSet
<T> <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) SortedSetAdapter.powerSet()
SynchronizedSortedSet.powerSet()
TreeSortedSet.powerSet()
UnmodifiableSortedSet.powerSet()
<P> MutableSortedSet
<T> SortedSetAdapter.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet
<T> SynchronizedSortedSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet
<T> UnmodifiableSortedSet.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <S> MutableSortedSet
<S> SortedSetAdapter.selectInstancesOf
(Class<S> clazz) <S> MutableSortedSet
<S> SynchronizedSortedSet.selectInstancesOf
(Class<S> clazz) <S> MutableSortedSet
<S> UnmodifiableSortedSet.selectInstancesOf
(Class<S> clazz) <P> MutableSortedSet
<T> SortedSetAdapter.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet
<T> SynchronizedSortedSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet
<T> UnmodifiableSortedSet.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SortedSetAdapter.symmetricDifference
(SetIterable<? extends T> setB) SynchronizedSortedSet.symmetricDifference
(SetIterable<? extends T> setB) TreeSortedSet.symmetricDifference
(SetIterable<? extends T> setB) UnmodifiableSortedSet.symmetricDifference
(SetIterable<? extends T> setB) SortedSetAdapter.take
(int count) SynchronizedSortedSet.take
(int count) TreeSortedSet.take
(int count) UnmodifiableSortedSet.take
(int count) SortedSetAdapter.toReversed()
SynchronizedSortedSet.toReversed()
TreeSortedSet.toReversed()
UnmodifiableSortedSet.toReversed()
SortedSetAdapter.union
(SetIterable<? extends T> set) SynchronizedSortedSet.union
(SetIterable<? extends T> set) UnmodifiableSortedSet.union
(SetIterable<? extends T> set) <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.with()
<T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.with
(Comparator<? super T> comparator) <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.with
(Comparator<? super T> comparator, T... items) <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.with
(T... items) <T> MutableSortedSet
<T> <T> MutableSortedSet
<T> MutableSortedSetFactoryImpl.withAll
(Comparator<? super T> comparator, Iterable<? extends T> items) UnmodifiableSortedSet.withoutAll
(Iterable<? extends T> elements) SortedSetAdapter.zipWithIndex()
SynchronizedSortedSet.zipWithIndex()
UnmodifiableSortedSet.zipWithIndex()
Constructors in org.eclipse.collections.impl.set.sorted.mutable with parameters of type MutableSortedSetModifierConstructorDescription(package private)
(package private)
SynchronizedSortedSet
(MutableSortedSet<T> set, Object newLock) (package private)
UnmodifiableSortedSet
(MutableSortedSet<? extends T> sortedSet) -
Uses of MutableSortedSet in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return MutableSortedSetModifier and TypeMethodDescriptionImmutableArrayStack.toSortedSet()
Deprecated.ImmutableArrayStack.toSortedSet
(Comparator<? super T> comparator) Deprecated. -
Uses of MutableSortedSet in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableSortedSetModifier and TypeMethodDescriptionArrayStack.toSortedSet()
ArrayStack.toSortedSet
(Comparator<? super T> comparator) SynchronizedStack.toSortedSet()
SynchronizedStack.toSortedSet
(Comparator<? super T> comparator) UnmodifiableStack.toSortedSet()
UnmodifiableStack.toSortedSet
(Comparator<? super T> comparator) -
Uses of MutableSortedSet in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test that return MutableSortedSetModifier and TypeMethodDescriptionClassComparer.difference
(Class<?> leftClass, Class<?> rightClass) ClassComparer.getMethodNames
(Class<?> classOne) ClassComparer.printClass
(Class<?> clazz) ClassComparer.printDifference
(Class<?> leftClass, Class<?> rightClass) ClassComparer.printIntersection
(Class<?> leftClass, Class<?> rightClass) ClassComparer.printSymmetricDifference
(Class<?> leftClass, Class<?> rightClass) ClassComparer.symmetricDifference
(Class<?> leftClass, Class<?> rightClass) Methods in org.eclipse.collections.impl.test that return types with arguments of type MutableSortedSetModifier and TypeMethodDescriptionClassComparer.compareAndPrint
(Class<?> leftClass, Class<?> rightClass) -
Uses of MutableSortedSet in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableSortedSetMethods in org.eclipse.collections.impl.utility.internal that return types with arguments of type MutableSortedSet
TreeSortedSet.newSet()
instead (inlineable)