Modifier and Type | Method | Description |
---|---|---|
ImmutableSortedSet<T> |
ImmutableSortedBag.distinct() |
|
ImmutableSortedSet<Pair<T,java.lang.Integer>> |
ImmutableSortedBag.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.empty() |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.empty(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.of() |
Same as
ImmutableSortedSetFactory.empty() . |
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.of(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.of(java.util.Comparator<? super T> comparator,
T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.of(T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.ofAll(java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.ofAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.ofSortedSet(java.util.SortedSet<T> set) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.with() |
Same as
ImmutableSortedSetFactory.empty() . |
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.with(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.with(java.util.Comparator<? super T> comparator,
T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.with(T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.withAll(java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.withAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactory.withSortedSet(java.util.SortedSet<T> set) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableSortedSet<V> |
ImmutableSortedSetMultimap.get(K key) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableSortedSet<T> |
PartitionImmutableSortedSet.getRejected() |
|
ImmutableSortedSet<T> |
PartitionImmutableSortedSet.getSelected() |
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(java.lang.Iterable<? extends T> elements) |
|
ImmutableSortedSet<T> |
ImmutableSortedSet.newWithout(T element) |
|
ImmutableSortedSet<T> |
ImmutableSortedSet.newWithoutAll(java.lang.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(java.lang.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,java.lang.Integer>> |
ImmutableSortedSet.zipWithIndex() |
Modifier and Type | Method | Description |
---|---|---|
static <T> java.util.stream.Collector<T,?,ImmutableSortedSet<T>> |
Collectors2.toImmutableSortedSet() |
Returns the elements as an ImmutableSortedSet.
|
static <T> java.util.stream.Collector<T,?,ImmutableSortedSet<T>> |
Collectors2.toImmutableSortedSet(java.util.Comparator<? super T> comparator) |
Returns the elements as an ImmutableSortedSet using the specified comparator.
|
Modifier and Type | Method | Description |
---|---|---|
static <T> ImmutableSortedSet<T> |
Iterables.iSortedSet() |
|
static <T> ImmutableSortedSet<T> |
Iterables.iSortedSet(java.util.Comparator<? super T> comparator) |
|
static <T> ImmutableSortedSet<T> |
Iterables.iSortedSet(java.util.Comparator<? super T> comparator,
T... elements) |
|
static <T> ImmutableSortedSet<T> |
Iterables.iSortedSet(T... elements) |
Constructor | Description |
---|---|
ImmutableSortedSetMultimapImpl(ImmutableMap<K,ImmutableSortedSet<V>> map,
java.util.Comparator<? super V> comparator) |
|
ImmutableSortedSetMultimapImpl(MutableMap<K,ImmutableSortedSet<V>> map,
java.util.Comparator<? super V> comparator) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableSortedSet<T> |
PartitionImmutableSortedSetImpl.getRejected() |
|
ImmutableSortedSet<T> |
PartitionImmutableSortedSetImpl.getSelected() |
Modifier and Type | Method | Description |
---|---|---|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.empty() |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.empty(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.of() |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.of(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.of(java.util.Comparator<? super T> comparator,
T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.of(T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.ofAll(java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.ofAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.ofSortedSet(java.util.SortedSet<T> set) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.with() |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.with(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.with(java.util.Comparator<? super T> comparator,
T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.with(T... items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.withAll(java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.withAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedSet<T> |
ImmutableSortedSetFactoryImpl.withSortedSet(java.util.SortedSet<T> set) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableSortedSet<T> |
SortedSetAdapter.toImmutable() |
|
ImmutableSortedSet<T> |
SynchronizedSortedSet.toImmutable() |
|
ImmutableSortedSet<T> |
TreeSortedSet.toImmutable() |
|
ImmutableSortedSet<T> |
UnmodifiableSortedSet.toImmutable() |
Modifier and Type | Method | Description |
---|---|---|
static <T> ImmutableSortedSet<ImmutableSortedSet<T>> |
SortedSetIterables.immutablePowerSet(java.util.SortedSet<T> set) |
Returns an Immutable version of powerset where the inner sets are also immutable.
|
Modifier and Type | Method | Description |
---|---|---|
static <T> ImmutableSortedSet<ImmutableSortedSet<T>> |
SortedSetIterables.immutablePowerSet(java.util.SortedSet<T> set) |
Returns an Immutable version of powerset where the inner sets are also immutable.
|
Copyright © 2004–2017. All rights reserved.