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.
-
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()