public abstract class AbstractListAdapter<T> extends AbstractCollectionAdapter<T> implements org.eclipse.collections.api.list.MutableList<T>
| Constructor and Description |
|---|
AbstractListAdapter() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
T element) |
boolean |
addAll(int index,
Collection<? extends T> collection) |
org.eclipse.collections.api.list.ParallelListIterable<T> |
asParallel(ExecutorService executorService,
int batchSize) |
ReverseIterable<T> |
asReversed() |
int |
binarySearch(T key) |
int |
binarySearch(T key,
Comparator<? super T> comparator) |
org.eclipse.collections.api.list.MutableList<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) |
boolean |
equals(Object o) |
<V> org.eclipse.collections.api.list.MutableList<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
T |
get(int index) |
<V> org.eclipse.collections.api.multimap.list.MutableListMultimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V> org.eclipse.collections.api.multimap.list.MutableListMultimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
int |
hashCode() |
int |
indexOf(Object o) |
int |
lastIndexOf(Object o) |
ListIterator<T> |
listIterator() |
ListIterator<T> |
listIterator(int index) |
org.eclipse.collections.api.partition.list.PartitionMutableList<T> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.partition.list.PartitionMutableList<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.list.MutableList<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.list.MutableList<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
T |
remove(int index) |
org.eclipse.collections.api.list.MutableList<T> |
reverseThis() |
org.eclipse.collections.api.list.MutableList<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> org.eclipse.collections.api.list.MutableList<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.list.MutableList<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
T |
set(int index,
T element) |
org.eclipse.collections.api.list.MutableList<T> |
shuffleThis() |
org.eclipse.collections.api.list.MutableList<T> |
shuffleThis(Random rnd) |
<V extends Comparable<? super V>> |
sortThisBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
subList(int fromIndex,
int toIndex) |
org.eclipse.collections.api.list.MutableList<T> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.list.MutableList<T> |
toReversed() |
org.eclipse.collections.api.stack.MutableStack<T> |
toStack() |
<S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that) |
org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex() |
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, toString, zip, zipWithIndexasSynchronized, asUnmodifiable, distinct, distinct, drop, dropWhile, newEmpty, partitionWhile, sortThis, sortThis, take, takeWhile, toImmutable, with, withAll, without, withoutAlladdAllIterable, aggregateBy, aggregateInPlaceBy, groupByUniqueKey, injectIntoWith, removeAllIterable, removeIf, removeIfWith, retainAllIterable, selectAndRejectWithadd, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, replaceAll, retainAll, size, sort, spliterator, toArray, toArrayparallelStream, removeIf, streamdetectLastIndex, reverseForEachcorresponds, detectIndex, forEach, forEachWithIndex, forEachWithIndexallSatisfy, 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, toStringpublic org.eclipse.collections.api.list.MutableList<T> clone()
public boolean addAll(int index,
Collection<? extends T> collection)
public org.eclipse.collections.api.list.MutableList<T> toReversed()
public org.eclipse.collections.api.list.MutableList<T> reverseThis()
reverseThis in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> shuffleThis()
shuffleThis in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> shuffleThis(Random rnd)
shuffleThis in interface org.eclipse.collections.api.list.MutableList<T>public T get(int index)
public int indexOf(Object o)
public int lastIndexOf(Object o)
lastIndexOf in interface List<T>lastIndexOf in interface org.eclipse.collections.api.list.ListIterable<T>public ListIterator<T> listIterator()
listIterator in interface List<T>listIterator in interface org.eclipse.collections.api.list.ListIterable<T>public ListIterator<T> listIterator(int index)
listIterator in interface List<T>listIterator in interface org.eclipse.collections.api.list.ListIterable<T>public <V extends Comparable<? super V>> org.eclipse.collections.api.list.MutableList<T> sortThisBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
sortThisBy in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function)
sortThisByInt in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> function)
sortThisByBoolean in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> function)
sortThisByChar in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> function)
sortThisByByte in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> function)
sortThisByShort in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function)
sortThisByFloat in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function)
sortThisByLong in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function)
sortThisByDouble in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> subList(int fromIndex, int toIndex)
public boolean equals(Object o)
public int hashCode()
public org.eclipse.collections.api.stack.MutableStack<T> toStack()
public ReverseIterable<T> asReversed()
asReversed in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>public org.eclipse.collections.api.list.ParallelListIterable<T> asParallel(ExecutorService executorService, int batchSize)
asParallel in interface org.eclipse.collections.api.list.ListIterable<T>public int binarySearch(T key, Comparator<? super T> comparator)
binarySearch in interface org.eclipse.collections.api.list.ListIterable<T>public int binarySearch(T key)
binarySearch in interface org.eclipse.collections.api.list.ListIterable<T>public <V> org.eclipse.collections.api.multimap.list.MutableListMultimap<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.list.ListIterable<T>groupBy in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>groupBy in class AbstractCollectionAdapter<T>public <V> org.eclipse.collections.api.multimap.list.MutableListMultimap<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.list.ListIterable<T>groupByEach in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>groupByEach in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.list.MutableList<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
public org.eclipse.collections.api.list.MutableList<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.list.ListIterable<T>select in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>select in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.list.MutableList<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.list.ListIterable<T>reject in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>reject in class AbstractCollectionAdapter<T>public <S> org.eclipse.collections.api.list.MutableList<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.collection.MutableCollection<T>selectInstancesOf in interface org.eclipse.collections.api.list.ListIterable<T>selectInstancesOf in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>selectInstancesOf in class AbstractCollectionAdapter<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.list.ListIterable<T>collect in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectBoolean in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectByte in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectChar in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectDouble in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectFloat in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectInt in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectLong in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectShort in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>flatCollect in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>collectIf in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<T>public org.eclipse.collections.api.partition.list.PartitionMutableList<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.list.ListIterable<T>partition in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>partition in class AbstractCollectionAdapter<T>public <P> org.eclipse.collections.api.partition.list.PartitionMutableList<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.list.ListIterable<T>partitionWith in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<T>public <P> org.eclipse.collections.api.list.MutableList<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.list.ListIterable<T>selectWith in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>selectWith in class AbstractCollectionAdapter<T>public <P> org.eclipse.collections.api.list.MutableList<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.list.ListIterable<T>rejectWith in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>rejectWith in class AbstractCollectionAdapter<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.list.ListIterable<T>collectWith in interface org.eclipse.collections.api.list.MutableList<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 AbstractCollectionAdapter<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.list.ListIterable<T>zip in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>zip in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.list.MutableList<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.list.ListIterable<T>zipWithIndex in interface org.eclipse.collections.api.list.MutableList<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.RichIterable<T>zipWithIndex in class AbstractCollectionAdapter<T>Copyright © 2004–2018. All rights reserved.