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 containsImmutableSortedSetFactoryandMutableSortedSetFactory.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. -
-
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(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 ImmutableSortedSet Modifier and Type Method Description ImmutableSortedSet<T>ImmutableSortedBag. distinct()default ImmutableSortedSet<T>ImmutableSortedBag. selectUnique()ImmutableSortedSet<Pair<T,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(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>ImmutableSortedSetFactory. ofAll(Iterable<? extends T> items)<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>ImmutableSortedSetFactory. withAll(Iterable<? extends T> items)<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 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(Iterable<? extends T> elements)ImmutableSortedSet<T>ImmutableSortedSet. newWithout(T element)ImmutableSortedSet<T>ImmutableSortedSet. newWithoutAll(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(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,Integer>>ImmutableSortedSet. zipWithIndex()
-