@ThreadSafe public class SynchronizedSortedSet<T> extends AbstractSynchronizedMutableCollection<T> implements org.eclipse.collections.api.set.sorted.MutableSortedSet<T>, Serializable
MutableSortedSet. It is imperative that the user manually synchronize on the collection when iterating over it using the
standard JDK iterator or JDK 5 for loop, as per Collections.synchronizedCollection(Collection).MutableSortedSet.asSynchronized(),
Serialized Form| Modifier and Type | Method and Description |
|---|---|
org.eclipse.collections.api.set.sorted.ParallelSortedSetIterable<T> |
asParallel(ExecutorService executorService,
int batchSize) |
org.eclipse.collections.api.LazyIterable<T> |
asReversed() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
asSynchronized() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
asUnmodifiable() |
<B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,B>> |
cartesianProduct(org.eclipse.collections.api.set.SetIterable<B> set) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
clone() |
<V> org.eclipse.collections.api.list.MutableList<V> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.list.primitive.MutableBooleanList |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction) |
org.eclipse.collections.api.list.primitive.MutableByteList |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
org.eclipse.collections.api.list.primitive.MutableCharList |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
org.eclipse.collections.api.list.primitive.MutableFloatList |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<V> org.eclipse.collections.api.list.MutableList<V> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.list.primitive.MutableIntList |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction) |
org.eclipse.collections.api.list.primitive.MutableLongList |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
org.eclipse.collections.api.list.primitive.MutableShortList |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<P,V> org.eclipse.collections.api.list.MutableList<V> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
Comparator<? super T> |
comparator() |
int |
compareTo(org.eclipse.collections.api.set.sorted.SortedSetIterable<T> o) |
<S> boolean |
corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super S> predicate) |
int |
detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
int |
detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
difference(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet) |
<R extends Set<T>> |
differenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet,
R targetSet) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
distinct() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
drop(int count) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
T |
first() |
<V> org.eclipse.collections.api.list.MutableList<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
void |
forEach(int startIndex,
int endIndex,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
void |
forEachWithIndex(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
<V> org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V> org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
headSet(T toElement) |
int |
indexOf(Object object) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
intersect(org.eclipse.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
intersectInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
boolean |
isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset) |
boolean |
isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset) |
T |
last() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
newEmpty() |
static <E,S extends SortedSet<E>> |
of(S set)
This method will take a MutableSortedSet and wrap it directly in a SynchronizedSortedSet.
|
static <E,S extends SortedSet<E>> |
of(S set,
Object lock)
This method will take a MutableSortedSet and wrap it directly in a SynchronizedSortedSet.
|
org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> |
partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<org.eclipse.collections.api.set.sorted.SortedSetIterable<T>> |
powerSet() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
void |
reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> org.eclipse.collections.api.set.sorted.MutableSortedSet<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
subSet(T fromElement,
T toElement) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends T> setB) |
<R extends Set<T>> |
symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
tailSet(T fromElement) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
take(int count) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.set.sorted.ImmutableSortedSet<T> |
toImmutable() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
toReversed() |
org.eclipse.collections.api.stack.MutableStack<T> |
toStack() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
union(org.eclipse.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
unionInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
with(T element) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
withAll(Iterable<? extends T> elements) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
without(T element) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
withoutAll(Iterable<? extends T> elements) |
<S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex() |
add, addAll, addAllIterable, aggregateBy, aggregateInPlaceBy, clear, injectIntoWith, remove, removeAll, removeAllIterable, removeIf, removeIfWith, retainAll, retainAllIterable, selectAndRejectWithallSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, equals, flatCollect, forEach, forEachWith, forEachWithIndex, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, groupByUniqueKey, hashCode, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, iterator, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, size, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexaddAllIterable, aggregateBy, aggregateInPlaceBy, groupByUniqueKey, injectIntoWith, removeAllIterable, removeIf, removeIfWith, retainAllIterable, selectAndRejectWithforEachWithIndex, getFirst, getLast, zip, zipWithIndexallSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, flatCollect, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, maxBy, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, size, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringspliteratoradd, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArrayparallelStream, removeIf, streampublic static <E,S extends SortedSet<E>> SynchronizedSortedSet<E> of(S set)
public static <E,S extends SortedSet<E>> org.eclipse.collections.api.set.sorted.MutableSortedSet<E> of(S set, Object lock)
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> withAll(Iterable<? extends T> elements)
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> withoutAll(Iterable<? extends T> elements)
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> newEmpty()
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> clone()
public Comparator<? super T> comparator()
comparator in interface SortedSet<T>comparator in interface org.eclipse.collections.api.ordered.SortedIterable<T>comparator in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public int compareTo(org.eclipse.collections.api.set.sorted.SortedSetIterable<T> o)
compareTo in interface Comparable<org.eclipse.collections.api.set.sorted.SortedSetIterable<T>>public int indexOf(Object object)
indexOf in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public org.eclipse.collections.api.stack.MutableStack<T> toStack()
public org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partitionWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<T>partitionWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>partitionWhile in interface org.eclipse.collections.api.ordered.SortedIterable<T>partitionWhile in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>partitionWhile in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> distinct()
distinct in interface org.eclipse.collections.api.ordered.OrderedIterable<T>distinct in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>distinct in interface org.eclipse.collections.api.ordered.SortedIterable<T>distinct in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>distinct in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
takeWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<T>takeWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>takeWhile in interface org.eclipse.collections.api.ordered.SortedIterable<T>takeWhile in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>takeWhile in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
dropWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<T>dropWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>dropWhile in interface org.eclipse.collections.api.ordered.SortedIterable<T>dropWhile in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>dropWhile in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <S> boolean corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super S> predicate)
corresponds in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public void forEach(int startIndex,
int endIndex,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
forEach in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public void forEachWithIndex(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
tap in interface org.eclipse.collections.api.collection.MutableCollection<T>tap in interface org.eclipse.collections.api.RichIterable<T>tap in interface org.eclipse.collections.api.set.MutableSetIterable<T>tap in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
select in interface org.eclipse.collections.api.collection.MutableCollection<T>select in interface org.eclipse.collections.api.ordered.OrderedIterable<T>select in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>select in interface org.eclipse.collections.api.ordered.SortedIterable<T>select in interface org.eclipse.collections.api.RichIterable<T>select in interface org.eclipse.collections.api.set.MutableSetIterable<T>select in interface org.eclipse.collections.api.set.SetIterable<T>select in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>select in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <P> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>selectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>selectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>selectWith in interface org.eclipse.collections.api.ordered.SortedIterable<T>selectWith in interface org.eclipse.collections.api.RichIterable<T>selectWith in interface org.eclipse.collections.api.set.MutableSetIterable<T>selectWith in interface org.eclipse.collections.api.set.SetIterable<T>selectWith in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>selectWith in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
reject in interface org.eclipse.collections.api.collection.MutableCollection<T>reject in interface org.eclipse.collections.api.ordered.OrderedIterable<T>reject in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>reject in interface org.eclipse.collections.api.ordered.SortedIterable<T>reject in interface org.eclipse.collections.api.RichIterable<T>reject in interface org.eclipse.collections.api.set.MutableSetIterable<T>reject in interface org.eclipse.collections.api.set.SetIterable<T>reject in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>reject in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <P> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>rejectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>rejectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>rejectWith in interface org.eclipse.collections.api.ordered.SortedIterable<T>rejectWith in interface org.eclipse.collections.api.RichIterable<T>rejectWith in interface org.eclipse.collections.api.set.MutableSetIterable<T>rejectWith in interface org.eclipse.collections.api.set.SetIterable<T>rejectWith in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>rejectWith in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface org.eclipse.collections.api.collection.MutableCollection<T>partition in interface org.eclipse.collections.api.ordered.OrderedIterable<T>partition in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>partition in interface org.eclipse.collections.api.ordered.SortedIterable<T>partition in interface org.eclipse.collections.api.RichIterable<T>partition in interface org.eclipse.collections.api.set.MutableSetIterable<T>partition in interface org.eclipse.collections.api.set.SetIterable<T>partition in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>partition in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <P> org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface org.eclipse.collections.api.collection.MutableCollection<T>partitionWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>partitionWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>partitionWith in interface org.eclipse.collections.api.RichIterable<T>partitionWith in interface org.eclipse.collections.api.set.MutableSetIterable<T>partitionWith in interface org.eclipse.collections.api.set.SetIterable<T>partitionWith in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>partitionWith in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <S> org.eclipse.collections.api.set.sorted.MutableSortedSet<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.collection.MutableCollection<T>selectInstancesOf in interface org.eclipse.collections.api.ordered.OrderedIterable<T>selectInstancesOf in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>selectInstancesOf in interface org.eclipse.collections.api.ordered.SortedIterable<T>selectInstancesOf in interface org.eclipse.collections.api.RichIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.MutableSetIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.SetIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>selectInstancesOf in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <V> org.eclipse.collections.api.list.MutableList<V> collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collect in interface org.eclipse.collections.api.collection.MutableCollection<T>collect in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collect in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collect in interface org.eclipse.collections.api.RichIterable<T>collect in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collect in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableBooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction)
collectBoolean in interface org.eclipse.collections.api.collection.MutableCollection<T>collectBoolean in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectBoolean in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectBoolean in interface org.eclipse.collections.api.RichIterable<T>collectBoolean in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectBoolean in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableByteList collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction)
collectByte in interface org.eclipse.collections.api.collection.MutableCollection<T>collectByte in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectByte in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectByte in interface org.eclipse.collections.api.RichIterable<T>collectByte in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectByte in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableCharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction)
collectChar in interface org.eclipse.collections.api.collection.MutableCollection<T>collectChar in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectChar in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectChar in interface org.eclipse.collections.api.RichIterable<T>collectChar in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectChar in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableDoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction)
collectDouble in interface org.eclipse.collections.api.collection.MutableCollection<T>collectDouble in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectDouble in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectDouble in interface org.eclipse.collections.api.RichIterable<T>collectDouble in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectDouble in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableFloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction)
collectFloat in interface org.eclipse.collections.api.collection.MutableCollection<T>collectFloat in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectFloat in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectFloat in interface org.eclipse.collections.api.RichIterable<T>collectFloat in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectFloat in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableIntList collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction)
collectInt in interface org.eclipse.collections.api.collection.MutableCollection<T>collectInt in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectInt in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectInt in interface org.eclipse.collections.api.RichIterable<T>collectInt in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectInt in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableLongList collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction)
collectLong in interface org.eclipse.collections.api.collection.MutableCollection<T>collectLong in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectLong in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectLong in interface org.eclipse.collections.api.RichIterable<T>collectLong in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectLong in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.list.primitive.MutableShortList collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction)
collectShort in interface org.eclipse.collections.api.collection.MutableCollection<T>collectShort in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectShort in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectShort in interface org.eclipse.collections.api.RichIterable<T>collectShort in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectShort in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <P,V> org.eclipse.collections.api.list.MutableList<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter)
collectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>collectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectWith in interface org.eclipse.collections.api.RichIterable<T>collectWith in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectWith in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <V> org.eclipse.collections.api.list.MutableList<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collectIf in interface org.eclipse.collections.api.collection.MutableCollection<T>collectIf in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectIf in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectIf in interface org.eclipse.collections.api.RichIterable<T>collectIf in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>collectIf in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <V> org.eclipse.collections.api.list.MutableList<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
flatCollect in interface org.eclipse.collections.api.collection.MutableCollection<T>flatCollect in interface org.eclipse.collections.api.ordered.OrderedIterable<T>flatCollect in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>flatCollect in interface org.eclipse.collections.api.RichIterable<T>flatCollect in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>flatCollect in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <V> org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap<V,T> groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface org.eclipse.collections.api.collection.MutableCollection<T>groupBy in interface org.eclipse.collections.api.ordered.OrderedIterable<T>groupBy in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>groupBy in interface org.eclipse.collections.api.ordered.SortedIterable<T>groupBy in interface org.eclipse.collections.api.RichIterable<T>groupBy in interface org.eclipse.collections.api.set.MutableSetIterable<T>groupBy in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>groupBy in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <V> org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap<V,T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface org.eclipse.collections.api.collection.MutableCollection<T>groupByEach in interface org.eclipse.collections.api.ordered.OrderedIterable<T>groupByEach in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>groupByEach in interface org.eclipse.collections.api.ordered.SortedIterable<T>groupByEach in interface org.eclipse.collections.api.RichIterable<T>groupByEach in interface org.eclipse.collections.api.set.MutableSetIterable<T>groupByEach in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>groupByEach in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,S>> zip(Iterable<S> that)
zip in interface org.eclipse.collections.api.collection.MutableCollection<T>zip in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zip in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>zip in interface org.eclipse.collections.api.ordered.SortedIterable<T>zip in interface org.eclipse.collections.api.RichIterable<T>zip in interface org.eclipse.collections.api.set.MutableSetIterable<T>zip in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<org.eclipse.collections.api.tuple.Pair<T,Integer>> zipWithIndex()
zipWithIndex in interface org.eclipse.collections.api.collection.MutableCollection<T>zipWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zipWithIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>zipWithIndex in interface org.eclipse.collections.api.ordered.SortedIterable<T>zipWithIndex in interface org.eclipse.collections.api.RichIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.MutableSetIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.SetIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>zipWithIndex in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public <R extends Set<T>> R unionInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
unionInto in interface org.eclipse.collections.api.set.SetIterable<T>public <R extends Set<T>> R intersectInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
intersectInto in interface org.eclipse.collections.api.set.SetIterable<T>public <R extends Set<T>> R differenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet, R targetSet)
differenceInto in interface org.eclipse.collections.api.set.SetIterable<T>public <R extends Set<T>> R symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
symmetricDifferenceInto in interface org.eclipse.collections.api.set.SetIterable<T>public boolean isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset)
isSubsetOf in interface org.eclipse.collections.api.set.SetIterable<T>public boolean isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset)
isProperSubsetOf in interface org.eclipse.collections.api.set.SetIterable<T>public <B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,B>> cartesianProduct(org.eclipse.collections.api.set.SetIterable<B> set)
cartesianProduct in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> union(org.eclipse.collections.api.set.SetIterable<? extends T> set)
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> intersect(org.eclipse.collections.api.set.SetIterable<? extends T> set)
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> difference(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet)
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends T> setB)
symmetricDifference in interface org.eclipse.collections.api.set.SetIterable<T>symmetricDifference in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>symmetricDifference in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<org.eclipse.collections.api.set.sorted.SortedSetIterable<T>> powerSet()
public org.eclipse.collections.api.set.sorted.ParallelSortedSetIterable<T> asParallel(ExecutorService executorService, int batchSize)
public org.eclipse.collections.api.set.sorted.ImmutableSortedSet<T> toImmutable()
toImmutable in interface org.eclipse.collections.api.collection.MutableCollection<T>toImmutable in interface org.eclipse.collections.api.set.SetIterable<T>toImmutable in interface org.eclipse.collections.api.set.sorted.MutableSortedSet<T>toImmutable in interface org.eclipse.collections.api.set.sorted.SortedSetIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> asUnmodifiable()
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> asSynchronized()
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> subSet(T fromElement, T toElement)
public void reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
reverseForEach in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>public org.eclipse.collections.api.LazyIterable<T> asReversed()
asReversed in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toReversed()
public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectLastIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> take(int count)
public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> drop(int count)
Copyright © 2004–2017. All rights reserved.