public abstract class AbstractArrayAdapter<T> extends AbstractMutableList<T> implements RandomAccess
| Modifier and Type | Method and Description |
|---|---|
boolean |
abstractArrayAdapterEquals(AbstractArrayAdapter<?> list) |
void |
add(int index,
T element) |
boolean |
addAll(Collection<? extends T> collection) |
boolean |
addAll(int index,
Collection<? extends T> collection) |
boolean |
addAllIterable(Iterable<? extends T> iterable) |
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
void |
clear() |
<V> org.eclipse.collections.api.list.MutableList<V> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<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) |
<V,R extends Collection<V>> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<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) |
<P,A,R extends Collection<A>> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends A> function,
P parameter,
R target) |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> collection) |
<S> boolean |
corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super S> predicate) |
int |
count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> int |
countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
T |
detect(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
T |
detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function0<? extends T> function) |
int |
detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
int |
detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> T |
detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P> T |
detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
org.eclipse.collections.api.block.function.Function0<? extends T> function) |
org.eclipse.collections.api.list.MutableList<T> |
distinct() |
org.eclipse.collections.api.list.MutableList<T> |
distinct(org.eclipse.collections.api.block.HashingStrategy<? super T> hashingStrategy) |
org.eclipse.collections.api.list.MutableList<T> |
drop(int count) |
void |
each(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
boolean |
equals(Object that) |
<V> org.eclipse.collections.api.list.MutableList<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V,R extends Collection<V>> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function,
R target) |
void |
forEach(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
<P> void |
forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter) |
void |
forEachWithIndex(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
void |
forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
T |
get(int index) |
T |
getFirst() |
T |
getLast() |
int |
hashCode() |
int |
indexOf(Object item) |
<IV> IV |
injectInto(IV injectedValue,
org.eclipse.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function) |
<IV,P> IV |
injectIntoWith(IV injectValue,
org.eclipse.collections.api.block.function.Function3<? super IV,? super T,? super P,? extends IV> function,
P parameter) |
boolean |
isEmpty() |
Iterator<T> |
iterator() |
int |
lastIndexOf(Object item) |
ListIterator<T> |
listIterator(int index) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
notEmpty() |
org.eclipse.collections.api.list.MutableList<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<R extends Collection<T>> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P> org.eclipse.collections.api.list.MutableList<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
T |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> collection) |
boolean |
removeAllIterable(Iterable<?> iterable) |
boolean |
removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
removeIfWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
retainAll(Collection<?> collection) |
boolean |
retainAllIterable(Iterable<?> iterable) |
org.eclipse.collections.api.list.MutableList<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<R extends Collection<T>> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P> org.eclipse.collections.api.tuple.Twin<org.eclipse.collections.api.list.MutableList<T>> |
selectAndRejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P> org.eclipse.collections.api.list.MutableList<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
int |
size() |
org.eclipse.collections.api.list.MutableList<T> |
subList(int fromIndex,
int toIndex) |
org.eclipse.collections.api.list.MutableList<T> |
take(int count) |
Object[] |
toArray() |
<E> E[] |
toArray(E[] array) |
appendString, asParallel, asReversed, asSynchronized, asUnmodifiable, binarySearch, binarySearch, clone, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, dropWhile, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, listIterator, max, max, maxBy, min, min, minBy, newEmpty, partition, partitionWhile, partitionWith, reverseForEach, reverseThis, selectInstancesOf, shuffleThis, shuffleThis, sortThis, sortThis, sortThisBy, sortThisByBoolean, sortThisByByte, sortThisByChar, sortThisByDouble, sortThisByFloat, sortThisByInt, sortThisByLong, sortThisByShort, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, takeWhile, tap, toImmutable, toList, toReversed, toSet, toSortedList, toSortedList, toStack, with, withAll, without, withoutAll, zip, zip, zipWithIndex, zipWithIndexadd, aggregateBy, aggregateInPlaceBy, chunkappendString, asLazy, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAllArguments, containsAllIterable, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, makeString, makeString, makeString, sumByDouble, sumByFloat, sumByInt, sumByLong, toBag, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringaggregateBy, aggregateInPlaceByadd, replaceAll, set, sort, spliteratorparallelStream, removeIf, streamappendString, asLazy, chunk, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAllArguments, containsAllIterable, groupBy, groupByEach, groupByUniqueKey, injectInto, makeString, makeString, makeString, sumByDouble, sumByFloat, sumByInt, sumByLong, toBag, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringpublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.RichIterable<T>notEmpty in class AbstractRichIterable<T>public T getFirst()
getFirst in interface org.eclipse.collections.api.list.ListIterable<T>getFirst in interface org.eclipse.collections.api.ordered.OrderedIterable<T>getFirst in interface org.eclipse.collections.api.RichIterable<T>getFirst in class AbstractMutableList<T>public T getLast()
getLast in interface org.eclipse.collections.api.list.ListIterable<T>getLast in interface org.eclipse.collections.api.ordered.OrderedIterable<T>getLast in interface org.eclipse.collections.api.RichIterable<T>getLast in class AbstractMutableList<T>public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
each in interface org.eclipse.collections.api.RichIterable<T>each in class AbstractMutableList<T>public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface org.eclipse.collections.api.InternalIterable<T>forEachWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>forEachWithIndex in class AbstractMutableList<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>forEachWithIndex in class AbstractMutableList<T>public boolean removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
removeIf in interface org.eclipse.collections.api.collection.MutableCollection<T>removeIf in class AbstractMutableList<T>public <P> boolean removeIfWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
removeIfWith in interface org.eclipse.collections.api.collection.MutableCollection<T>removeIfWith in class AbstractMutableList<T>public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detect in interface org.eclipse.collections.api.RichIterable<T>detect in class AbstractMutableList<T>public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function0<? extends T> function)
detectIfNone in interface org.eclipse.collections.api.RichIterable<T>detectIfNone in class AbstractMutableList<T>public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>detectIndex in class AbstractMutableList<T>public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectLastIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>detectLastIndex in class AbstractMutableList<T>public int count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
count in interface org.eclipse.collections.api.RichIterable<T>count in class AbstractMutableList<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>corresponds in class AbstractMutableList<T>public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
anySatisfy in interface org.eclipse.collections.api.RichIterable<T>anySatisfy in class AbstractMutableList<T>public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
allSatisfy in interface org.eclipse.collections.api.RichIterable<T>allSatisfy in class AbstractMutableList<T>public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
noneSatisfy in interface org.eclipse.collections.api.RichIterable<T>noneSatisfy in class AbstractMutableList<T>public <IV> IV injectInto(IV injectedValue,
org.eclipse.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function)
injectInto in interface org.eclipse.collections.api.RichIterable<T>injectInto in class AbstractMutableList<T>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 AbstractMutableList<T>public <R extends Collection<T>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, R target)
select in interface org.eclipse.collections.api.RichIterable<T>select in class AbstractMutableList<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 AbstractMutableList<T>public <R extends Collection<T>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, R target)
reject in interface org.eclipse.collections.api.RichIterable<T>reject in class AbstractMutableList<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 AbstractMutableList<T>public <V,R extends Collection<V>> R collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function, R target)
collect in interface org.eclipse.collections.api.RichIterable<T>collect in class AbstractMutableList<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 AbstractMutableList<T>public <V,R extends Collection<V>> R collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function<? super T,? extends V> function, R target)
collectIf in interface org.eclipse.collections.api.RichIterable<T>collectIf in class AbstractMutableList<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 AbstractMutableList<T>public <V,R extends Collection<V>> R flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function, R target)
flatCollect in interface org.eclipse.collections.api.RichIterable<T>flatCollect in class AbstractMutableList<T>public <P> org.eclipse.collections.api.tuple.Twin<org.eclipse.collections.api.list.MutableList<T>> selectAndRejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectAndRejectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>selectAndRejectWith in class AbstractMutableList<T>public int size()
public boolean isEmpty()
isEmpty in interface Collection<T>isEmpty in interface List<T>isEmpty in interface org.eclipse.collections.api.RichIterable<T>isEmpty in class AbstractRichIterable<T>public boolean contains(Object o)
contains in interface Collection<T>contains in interface List<T>contains in interface org.eclipse.collections.api.RichIterable<T>contains in class AbstractMutableList<T>public Object[] toArray()
toArray in interface Collection<T>toArray in interface List<T>toArray in interface org.eclipse.collections.api.RichIterable<T>toArray in class AbstractRichIterable<T>public <E> E[] toArray(E[] array)
toArray in interface Collection<T>toArray in interface List<T>toArray in interface org.eclipse.collections.api.RichIterable<T>toArray in class AbstractRichIterable<T>public boolean remove(Object o)
remove in interface Collection<T>remove in interface List<T>remove in class AbstractMutableCollection<T>public boolean containsAll(Collection<?> collection)
containsAll in interface Collection<T>containsAll in interface List<T>containsAll in interface org.eclipse.collections.api.RichIterable<T>containsAll in class AbstractMutableList<T>public boolean addAll(Collection<? extends T> collection)
addAll in interface Collection<T>addAll in interface List<T>addAll in class AbstractMutableCollection<T>public boolean addAllIterable(Iterable<? extends T> iterable)
addAllIterable in interface org.eclipse.collections.api.collection.MutableCollection<T>addAllIterable in class AbstractMutableCollection<T>public boolean removeAll(Collection<?> collection)
removeAll in interface Collection<T>removeAll in interface List<T>removeAll in class AbstractMutableList<T>public boolean removeAllIterable(Iterable<?> iterable)
removeAllIterable in interface org.eclipse.collections.api.collection.MutableCollection<T>removeAllIterable in class AbstractMutableCollection<T>public boolean retainAll(Collection<?> collection)
retainAll in interface Collection<T>retainAll in interface List<T>retainAll in class AbstractMutableList<T>public boolean retainAllIterable(Iterable<?> iterable)
retainAllIterable in interface org.eclipse.collections.api.collection.MutableCollection<T>retainAllIterable in class AbstractMutableCollection<T>public void clear()
public boolean addAll(int index,
Collection<? extends T> collection)
public T get(int index)
public int indexOf(Object item)
public int lastIndexOf(Object item)
lastIndexOf in interface List<T>lastIndexOf in interface org.eclipse.collections.api.list.ListIterable<T>lastIndexOf in class AbstractMutableList<T>public ListIterator<T> listIterator(int index)
listIterator in interface List<T>listIterator in interface org.eclipse.collections.api.list.ListIterable<T>listIterator in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> subList(int fromIndex, int toIndex)
public boolean equals(Object that)
equals in interface Collection<T>equals in interface List<T>equals in interface org.eclipse.collections.api.list.ListIterable<T>equals in class AbstractMutableList<T>public boolean abstractArrayAdapterEquals(AbstractArrayAdapter<?> list)
public int hashCode()
hashCode in interface Collection<T>hashCode in interface List<T>hashCode in interface org.eclipse.collections.api.list.ListIterable<T>hashCode in class AbstractMutableList<T>public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure, P parameter)
forEachWith in interface org.eclipse.collections.api.InternalIterable<T>forEachWith in class AbstractMutableList<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 AbstractMutableList<T>public <P,R extends Collection<T>> R selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
selectWith in interface org.eclipse.collections.api.RichIterable<T>selectWith in class AbstractMutableList<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 AbstractMutableList<T>public <P,R extends Collection<T>> R rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
rejectWith in interface org.eclipse.collections.api.RichIterable<T>rejectWith in class AbstractMutableList<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.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 AbstractMutableList<T>public <P,A,R extends Collection<A>> R collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends A> function, P parameter, R target)
collectWith in interface org.eclipse.collections.api.RichIterable<T>collectWith in class AbstractMutableList<T>public <IV,P> IV injectIntoWith(IV injectValue,
org.eclipse.collections.api.block.function.Function3<? super IV,? super T,? super P,? extends IV> function,
P parameter)
injectIntoWith in interface org.eclipse.collections.api.collection.MutableCollection<T>injectIntoWith in class AbstractMutableList<T>public void forEach(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
forEach in interface org.eclipse.collections.api.ordered.OrderedIterable<T>forEach in class AbstractMutableList<T>public <P> T detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
detectWith in interface org.eclipse.collections.api.RichIterable<T>detectWith in class AbstractMutableList<T>public <P> T detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, org.eclipse.collections.api.block.function.Function0<? extends T> function)
detectWithIfNone in interface org.eclipse.collections.api.RichIterable<T>detectWithIfNone in class AbstractMutableList<T>public <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
countWith in interface org.eclipse.collections.api.RichIterable<T>countWith in class AbstractMutableList<T>public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
anySatisfyWith in interface org.eclipse.collections.api.RichIterable<T>anySatisfyWith in class AbstractMutableList<T>public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
allSatisfyWith in interface org.eclipse.collections.api.RichIterable<T>allSatisfyWith in class AbstractMutableList<T>public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
noneSatisfyWith in interface org.eclipse.collections.api.RichIterable<T>noneSatisfyWith in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> distinct()
distinct in interface org.eclipse.collections.api.list.ListIterable<T>distinct in interface org.eclipse.collections.api.list.MutableList<T>distinct in interface org.eclipse.collections.api.ordered.OrderedIterable<T>distinct in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>distinct in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> distinct(org.eclipse.collections.api.block.HashingStrategy<? super T> hashingStrategy)
distinct in interface org.eclipse.collections.api.list.ListIterable<T>distinct in interface org.eclipse.collections.api.list.MutableList<T>distinct in class AbstractMutableList<T>public void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.RichIterable<T>appendString in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> take(int count)
public org.eclipse.collections.api.list.MutableList<T> drop(int count)
Copyright © 2004–2018. All rights reserved.