Uses of Interface
org.eclipse.collections.api.set.sorted.ImmutableSortedSet
-
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.ImmutableSortedSet<T>ImmutableSortedSet. toReversed()ImmutableSortedSet<T>ImmutableSortedSet. union(SetIterable<? extends T> set)ImmutableSortedSet<Pair<T,Integer>>ImmutableSortedSet. zipWithIndex() -
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> 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. -
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(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.multimap.set.sorted
Constructor parameters in org.eclipse.collections.impl.multimap.set.sorted with type arguments of type ImmutableSortedSet Constructor Description ImmutableSortedSetMultimapImpl(ImmutableMap<K,ImmutableSortedSet<V>> map, Comparator<? super V> comparator)ImmutableSortedSetMultimapImpl(MutableMap<K,ImmutableSortedSet<V>> map, Comparator<? super V> comparator) -
Uses of ImmutableSortedSet in org.eclipse.collections.impl.partition.set.sorted
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
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableSortedSet Modifier and Type Method Description <T> ImmutableSortedSet<T>ImmutableSortedSetFactoryImpl. empty()<T> ImmutableSortedSet<T>ImmutableSortedSetFactoryImpl. empty(Comparator<? super T> comparator)<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>ImmutableSortedSetFactoryImpl. ofAll(Iterable<? extends T> items)<T> ImmutableSortedSet<T>ImmutableSortedSetFactoryImpl. ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)<T> ImmutableSortedSet<T>ImmutableSortedSetFactoryImpl. ofSortedSet(SortedSet<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>ImmutableSortedSetFactoryImpl. withAll(Iterable<? extends T> items)<T> ImmutableSortedSet<T>ImmutableSortedSetFactoryImpl. withAll(Comparator<? super T> comparator, Iterable<? extends T> items)<T> ImmutableSortedSet<T>ImmutableSortedSetFactoryImpl. withSortedSet(SortedSet<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(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(SortedSet<T> set)Returns an Immutable version of powerset where the inner sets are also immutable.