public class UnmodifiableSortedBag<T> extends AbstractUnmodifiableMutableCollection<T> implements org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>, Serializable
MutableSortedBag.asUnmodifiable(),
Serialized Form| Modifier and Type | Method and Description |
|---|---|
void |
addOccurrences(T item,
int occurrences) |
org.eclipse.collections.api.LazyIterable<T> |
asReversed() |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
asSynchronized() |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
asUnmodifiable() |
org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.primitive.ObjectIntPair<T>> |
bottomOccurrences(int count) |
UnmodifiableSortedBag<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,A> org.eclipse.collections.api.list.MutableList<A> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends A> function,
P parameter) |
Comparator<? super T> |
comparator() |
int |
compareTo(org.eclipse.collections.api.bag.sorted.SortedBag<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> |
distinct() |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
drop(int count) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
boolean |
equals(Object obj) |
<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) |
void |
forEachWithOccurrences(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> procedure) |
<V> org.eclipse.collections.api.multimap.sortedbag.MutableSortedBagMultimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V> org.eclipse.collections.api.multimap.sortedbag.MutableSortedBagMultimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
int |
hashCode() |
int |
indexOf(Object object) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
newEmpty() |
int |
occurrencesOf(Object item) |
static <E,S extends org.eclipse.collections.api.bag.sorted.MutableSortedBag<E>> |
of(S bag)
This method will take a MutableSortedBag and wrap it directly in a UnmodifiableSortedBag.
|
org.eclipse.collections.api.partition.bag.sorted.PartitionMutableSortedBag<T> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
org.eclipse.collections.api.partition.bag.sorted.PartitionMutableSortedBag<T> |
partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.partition.bag.sorted.PartitionMutableSortedBag<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
removeOccurrences(Object item,
int occurrences) |
void |
reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
<S> org.eclipse.collections.api.bag.sorted.MutableSortedBag<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
setOccurrences(T item,
int occurrences) |
int |
sizeDistinct() |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
take(int count) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.bag.sorted.ImmutableSortedBag<T> |
toImmutable() |
org.eclipse.collections.api.map.sorted.MutableSortedMap<T,Integer> |
toMapOfItemToCount() |
org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.primitive.ObjectIntPair<T>> |
topOccurrences(int count) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
toReversed() |
org.eclipse.collections.api.stack.MutableStack<T> |
toStack() |
String |
toStringOfItemToCount() |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
with(T element) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
withAll(Iterable<? extends T> elements) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
without(T element) |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<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) |
<S,R extends Collection<org.eclipse.collections.api.tuple.Pair<T,S>>> |
zip(Iterable<S> that,
R target) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex() |
<R extends Collection<org.eclipse.collections.api.tuple.Pair<T,Integer>>> |
zipWithIndex(R target) |
add, addAll, addAllIterable, aggregateBy, aggregateInPlaceBy, allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, clear, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, flatCollect, forEach, forEachWith, forEachWithIndex, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, injectIntoWith, isEmpty, iterator, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, remove, removeAll, removeAllIterable, removeIf, removeIfWith, retainAll, retainAllIterable, select, selectAndRejectWith, 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, toStringaggregateBy, aggregateInPlaceByforEachWithIndex, getFirst, getLastallSatisfy, 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, 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, toStringforEach, iterator, spliteratoraddAllIterable, groupByUniqueKey, injectIntoWith, removeAllIterable, removeIf, removeIfWith, retainAllIterable, selectAndRejectWithadd, addAll, clear, contains, containsAll, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArraypublic static <E,S extends org.eclipse.collections.api.bag.sorted.MutableSortedBag<E>> UnmodifiableSortedBag<E> of(S bag)
public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> asUnmodifiable()
asUnmodifiable in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>asUnmodifiable in interface org.eclipse.collections.api.collection.MutableCollection<T>asUnmodifiable in class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> asSynchronized()
asSynchronized in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>asSynchronized in interface org.eclipse.collections.api.collection.MutableCollection<T>asSynchronized in class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.ImmutableSortedBag<T> toImmutable()
toImmutable in interface org.eclipse.collections.api.bag.Bag<T>toImmutable in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>toImmutable in interface org.eclipse.collections.api.collection.MutableCollection<T>toImmutable in class AbstractUnmodifiableMutableCollection<T>public UnmodifiableSortedBag<T> clone()
public boolean equals(Object obj)
public int hashCode()
public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> newEmpty()
newEmpty in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>newEmpty in interface org.eclipse.collections.api.collection.MutableCollection<T>newEmpty in class AbstractUnmodifiableMutableCollection<T>public void addOccurrences(T item, int occurrences)
addOccurrences in interface org.eclipse.collections.api.bag.MutableBagIterable<T>public boolean removeOccurrences(Object item, int occurrences)
removeOccurrences in interface org.eclipse.collections.api.bag.MutableBagIterable<T>public boolean setOccurrences(T item, int occurrences)
setOccurrences in interface org.eclipse.collections.api.bag.MutableBagIterable<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
tap in interface org.eclipse.collections.api.bag.Bag<T>tap in interface org.eclipse.collections.api.bag.MutableBagIterable<T>tap in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>tap in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>tap in interface org.eclipse.collections.api.collection.MutableCollection<T>tap in interface org.eclipse.collections.api.RichIterable<T>tap in class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
select in interface org.eclipse.collections.api.bag.Bag<T>select in interface org.eclipse.collections.api.bag.MutableBagIterable<T>select in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>select in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public <P> org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface org.eclipse.collections.api.bag.Bag<T>selectWith in interface org.eclipse.collections.api.bag.MutableBagIterable<T>selectWith in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>selectWith in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
reject in interface org.eclipse.collections.api.bag.Bag<T>reject in interface org.eclipse.collections.api.bag.MutableBagIterable<T>reject in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>reject in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public <P> org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface org.eclipse.collections.api.bag.Bag<T>rejectWith in interface org.eclipse.collections.api.bag.MutableBagIterable<T>rejectWith in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>rejectWith in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.partition.bag.sorted.PartitionMutableSortedBag<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface org.eclipse.collections.api.bag.Bag<T>partition in interface org.eclipse.collections.api.bag.MutableBagIterable<T>partition in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>partition in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public <P> org.eclipse.collections.api.partition.bag.sorted.PartitionMutableSortedBag<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface org.eclipse.collections.api.bag.Bag<T>partitionWith in interface org.eclipse.collections.api.bag.MutableBagIterable<T>partitionWith in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>partitionWith in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.partition.bag.sorted.PartitionMutableSortedBag<T> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partitionWhile in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>partitionWhile in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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>public int sizeDistinct()
sizeDistinct in interface org.eclipse.collections.api.bag.Bag<T>public int occurrencesOf(Object item)
occurrencesOf in interface org.eclipse.collections.api.bag.Bag<T>public void forEachWithOccurrences(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> procedure)
forEachWithOccurrences in interface org.eclipse.collections.api.bag.Bag<T>public org.eclipse.collections.api.map.sorted.MutableSortedMap<T,Integer> toMapOfItemToCount()
toMapOfItemToCount in interface org.eclipse.collections.api.bag.Bag<T>toMapOfItemToCount in interface org.eclipse.collections.api.bag.MutableBagIterable<T>toMapOfItemToCount in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>toMapOfItemToCount in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>public String toStringOfItemToCount()
toStringOfItemToCount in interface org.eclipse.collections.api.bag.Bag<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
selectByOccurrences in interface org.eclipse.collections.api.bag.Bag<T>selectByOccurrences in interface org.eclipse.collections.api.bag.MutableBagIterable<T>selectByOccurrences in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>selectByOccurrences in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>public org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.primitive.ObjectIntPair<T>> topOccurrences(int count)
public org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.primitive.ObjectIntPair<T>> bottomOccurrences(int count)
public <S> org.eclipse.collections.api.bag.sorted.MutableSortedBag<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.bag.Bag<T>selectInstancesOf in interface org.eclipse.collections.api.bag.MutableBagIterable<T>selectInstancesOf in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>selectInstancesOf in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collect in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectBoolean in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectByte in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectChar in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectDouble in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectFloat in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectInt in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectLong in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectShort in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>flatCollect in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> distinct()
distinct in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>distinct in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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>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 org.eclipse.collections.api.stack.MutableStack<T> toStack()
public int indexOf(Object object)
indexOf in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
takeWhile in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>takeWhile in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
dropWhile in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>dropWhile in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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>public <P,A> org.eclipse.collections.api.list.MutableList<A> collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends A> function, P parameter)
collectWith in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>collectWith in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>collectIf in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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 <V> org.eclipse.collections.api.multimap.sortedbag.MutableSortedBagMultimap<V,T> groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface org.eclipse.collections.api.bag.Bag<T>groupBy in interface org.eclipse.collections.api.bag.MutableBagIterable<T>groupBy in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>groupBy in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public <V> org.eclipse.collections.api.multimap.sortedbag.MutableSortedBagMultimap<V,T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface org.eclipse.collections.api.bag.Bag<T>groupByEach in interface org.eclipse.collections.api.bag.MutableBagIterable<T>groupByEach in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>groupByEach in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<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.bag.sorted.MutableSortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public <S,R extends Collection<org.eclipse.collections.api.tuple.Pair<T,S>>> R zip(Iterable<S> that, R target)
zip in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zip in interface org.eclipse.collections.api.RichIterable<T>zip in class AbstractUnmodifiableMutableCollection<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.bag.Bag<T>zipWithIndex in interface org.eclipse.collections.api.bag.MutableBagIterable<T>zipWithIndex in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>zipWithIndex in interface org.eclipse.collections.api.bag.sorted.SortedBag<T>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 class AbstractUnmodifiableMutableCollection<T>public <R extends Collection<org.eclipse.collections.api.tuple.Pair<T,Integer>>> R zipWithIndex(R target)
zipWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zipWithIndex in interface org.eclipse.collections.api.RichIterable<T>zipWithIndex in class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toReversed()
public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> take(int count)
public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> drop(int count)
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 int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectLastIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>public Comparator<? super T> comparator()
public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> with(T element)
with in interface org.eclipse.collections.api.bag.MutableBagIterable<T>with in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>with in interface org.eclipse.collections.api.collection.MutableCollection<T>with in class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> without(T element)
without in interface org.eclipse.collections.api.bag.MutableBagIterable<T>without in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>without in interface org.eclipse.collections.api.collection.MutableCollection<T>without in class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> withAll(Iterable<? extends T> elements)
withAll in interface org.eclipse.collections.api.bag.MutableBagIterable<T>withAll in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>withAll in interface org.eclipse.collections.api.collection.MutableCollection<T>withAll in class AbstractUnmodifiableMutableCollection<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> withoutAll(Iterable<? extends T> elements)
withoutAll in interface org.eclipse.collections.api.bag.MutableBagIterable<T>withoutAll in interface org.eclipse.collections.api.bag.sorted.MutableSortedBag<T>withoutAll in interface org.eclipse.collections.api.collection.MutableCollection<T>withoutAll in class AbstractUnmodifiableMutableCollection<T>public int compareTo(org.eclipse.collections.api.bag.sorted.SortedBag<T> o)
compareTo in interface Comparable<org.eclipse.collections.api.bag.sorted.SortedBag<T>>Copyright © 2004–2017. All rights reserved.