| 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 contains
ImmutableSortedSetFactory and MutableSortedSetFactory. |
| org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap. |
| org.eclipse.collections.api.partition.set.sorted |
This package contains interfaces for
PartitionSortedSet. |
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Method and 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>> |
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 by
function. |
| Modifier and Type | Method and Description |
|---|---|
ImmutableSortedSet<T> |
ImmutableSortedBag.distinct() |
default ImmutableSortedSet<T> |
ImmutableSortedBag.selectUnique() |
ImmutableSortedSet<Pair<T,Integer>> |
ImmutableSortedBag.zipWithIndex() |
| Modifier and Type | Method and Description |
|---|---|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.empty() |
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.empty(Comparator<? super T> comparator) |
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.of()
Same as
ImmutableSortedSetFactory.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(Comparator<? super T> comparator,
Iterable<? extends T> items)
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.ofAll(Iterable<? extends T> items)
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.ofSortedSet(SortedSet<T> set)
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.with()
Same as
ImmutableSortedSetFactory.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(Comparator<? super T> comparator,
Iterable<? extends T> items) |
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.withAll(Iterable<? extends T> items) |
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.withSortedSet(SortedSet<T> set) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableSortedSet<V> |
ImmutableSortedSetMultimap.get(K key) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableSortedSet<T> |
PartitionImmutableSortedSet.getRejected() |
ImmutableSortedSet<T> |
PartitionImmutableSortedSet.getSelected() |
| Modifier and Type | Method and 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> |
SortedSetIterable.toImmutable()
Converts the SortedSetIterable to an immutable implementation.
|
ImmutableSortedSet<T> |
MutableSortedSet.toImmutable()
Returns an immutable copy of this set.
|
default ImmutableSortedSet<T> |
MutableSortedSet.toImmutableSortedSet() |
default ImmutableSortedSet<T> |
ImmutableSortedSet.toImmutableSortedSet() |
ImmutableSortedSet<T> |
ImmutableSortedSet.toReversed() |
ImmutableSortedSet<T> |
ImmutableSortedSet.union(SetIterable<? extends T> set) |
ImmutableSortedSet<Pair<T,Integer>> |
ImmutableSortedSet.zipWithIndex() |
Copyright © 2004–2023. All rights reserved.