public final class ArrayListAdapter<T> extends AbstractListAdapter<T> implements RandomAccess, Serializable
To create a new wrapper around an existing ArrayList instance, use the adapt(ArrayList) factory method. To
create a new empty wrapper, use the newList() or newList(int) factory methods.
| Modifier and Type | Method and Description |
|---|---|
static <E> ArrayListAdapter<E> |
adapt(ArrayList<E> newDelegate) |
boolean |
allSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
boolean |
anySatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
ReverseIterable<T> |
asReversed() |
com.gs.collections.api.list.MutableList<T> |
asSynchronized() |
com.gs.collections.api.list.MutableList<T> |
asUnmodifiable() |
ArrayListAdapter<T> |
clone() |
<V> ArrayListAdapter<V> |
collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
com.gs.collections.api.list.primitive.MutableBooleanList |
collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction) |
com.gs.collections.api.list.primitive.MutableByteList |
collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
com.gs.collections.api.list.primitive.MutableCharList |
collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
com.gs.collections.api.list.primitive.MutableDoubleList |
collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
com.gs.collections.api.list.primitive.MutableFloatList |
collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<V> ArrayListAdapter<V> |
collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
com.gs.collections.api.list.primitive.MutableIntList |
collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> intFunction) |
com.gs.collections.api.list.primitive.MutableLongList |
collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
com.gs.collections.api.list.primitive.MutableShortList |
collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<P,A> ArrayListAdapter<A> |
collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends A> function,
P parameter) |
<S> boolean |
corresponds(com.gs.collections.api.ordered.OrderedIterable<S> other,
com.gs.collections.api.block.predicate.Predicate2<? super T,? super S> predicate) |
int |
count(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
T |
detect(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
T |
detectIfNone(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function0<? extends T> function) |
int |
detectIndex(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
int |
detectLastIndex(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
ArrayListAdapter<T> |
distinct() |
ArrayListAdapter<T> |
distinct(com.gs.collections.api.block.HashingStrategy<? super T> hashingStrategy) |
com.gs.collections.api.list.MutableList<T> |
drop(int count) |
com.gs.collections.api.list.MutableList<T> |
dropWhile(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
void |
each(com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
<V> ArrayListAdapter<V> |
flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
void |
forEach(int fromIndex,
int toIndex,
com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
void |
forEach(com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
void |
forEachWithIndex(int fromIndex,
int toIndex,
com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
void |
forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
<V> FastListMultimap<V,T> |
groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> FastListMultimap<V,T> |
groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<IV> IV |
injectInto(IV injectedValue,
com.gs.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function) |
ArrayListAdapter<T> |
newEmpty() |
static <E> ArrayListAdapter<E> |
newList() |
static <E> ArrayListAdapter<E> |
newList(int size) |
boolean |
noneSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
com.gs.collections.api.partition.list.PartitionMutableList<T> |
partition(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
com.gs.collections.api.partition.list.PartitionMutableList<T> |
partitionWhile(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> com.gs.collections.api.partition.list.PartitionMutableList<T> |
partitionWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
ArrayListAdapter<T> |
reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> ArrayListAdapter<T> |
rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
void |
reverseForEach(com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
ArrayListAdapter<T> |
select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> com.gs.collections.api.list.MutableList<S> |
selectInstancesOf(Class<S> clazz) |
<P> ArrayListAdapter<T> |
selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
ArrayListAdapter<T> |
sortThis() |
ArrayListAdapter<T> |
sortThis(Comparator<? super T> comparator) |
com.gs.collections.api.list.MutableList<T> |
take(int count) |
com.gs.collections.api.list.MutableList<T> |
takeWhile(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
com.gs.collections.api.list.ImmutableList<T> |
toImmutable() |
ArrayListAdapter<T> |
with(T... elements) |
ArrayListAdapter<T> |
with(T element) |
ArrayListAdapter<T> |
with(T element1,
T element2) |
ArrayListAdapter<T> |
with(T element1,
T element2,
T element3) |
ArrayListAdapter<T> |
withAll(Iterable<? extends T> elements) |
ArrayListAdapter<T> |
without(T element) |
ArrayListAdapter<T> |
withoutAll(Iterable<? extends T> elements) |
<S> com.gs.collections.api.list.MutableList<com.gs.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that) |
com.gs.collections.api.list.MutableList<com.gs.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex() |
add, addAll, asParallel, binarySearch, binarySearch, equals, get, hashCode, indexOf, lastIndexOf, listIterator, listIterator, remove, reverseThis, set, shuffleThis, shuffleThis, sortThisBy, sortThisByBoolean, sortThisByByte, sortThisByChar, sortThisByDouble, sortThisByFloat, sortThisByInt, sortThisByLong, sortThisByShort, subList, tap, toReversed, toStackadd, addAll, addAllIterable, aggregateBy, aggregateInPlaceBy, allSatisfyWith, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, clear, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, countWith, detectWith, detectWithIfNone, flatCollect, forEachWith, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectIntoWith, isEmpty, iterator, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, 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, zipWithIndexaddAllIterable, 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, streamallSatisfyWith, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, countWith, detectWith, detectWithIfNone, flatCollect, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, maxBy, min, minBy, 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 static <E> ArrayListAdapter<E> newList()
public static <E> ArrayListAdapter<E> newList(int size)
public static <E> ArrayListAdapter<E> adapt(ArrayList<E> newDelegate)
public com.gs.collections.api.list.MutableList<T> asUnmodifiable()
public com.gs.collections.api.list.MutableList<T> asSynchronized()
public com.gs.collections.api.list.ImmutableList<T> toImmutable()
public ArrayListAdapter<T> clone()
clone in interface com.gs.collections.api.list.MutableList<T>clone in class AbstractListAdapter<T>public ArrayListAdapter<T> newEmpty()
public void forEach(com.gs.collections.api.block.procedure.Procedure<? super T> procedure)
forEach in interface com.gs.collections.api.InternalIterable<T>forEach in class AbstractCollectionAdapter<T>public void each(com.gs.collections.api.block.procedure.Procedure<? super T> procedure)
each in interface com.gs.collections.api.RichIterable<T>each in class AbstractCollectionAdapter<T>public void reverseForEach(com.gs.collections.api.block.procedure.Procedure<? super T> procedure)
reverseForEach in interface com.gs.collections.api.ordered.ReversibleIterable<T>public void forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface com.gs.collections.api.InternalIterable<T>forEachWithIndex in interface com.gs.collections.api.ordered.OrderedIterable<T>forEachWithIndex in class AbstractCollectionAdapter<T>public void forEachWithIndex(int fromIndex,
int toIndex,
com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface com.gs.collections.api.ordered.OrderedIterable<T>public T detect(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
detect in interface com.gs.collections.api.RichIterable<T>detect in class AbstractCollectionAdapter<T>public T detectIfNone(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, com.gs.collections.api.block.function.Function0<? extends T> function)
detectIfNone in interface com.gs.collections.api.RichIterable<T>detectIfNone in class AbstractCollectionAdapter<T>public int count(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
count in interface com.gs.collections.api.RichIterable<T>count in class AbstractCollectionAdapter<T>public <S> boolean corresponds(com.gs.collections.api.ordered.OrderedIterable<S> other,
com.gs.collections.api.block.predicate.Predicate2<? super T,? super S> predicate)
corresponds in interface com.gs.collections.api.ordered.OrderedIterable<T>public boolean anySatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
anySatisfy in interface com.gs.collections.api.RichIterable<T>anySatisfy in class AbstractCollectionAdapter<T>public boolean allSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
allSatisfy in interface com.gs.collections.api.RichIterable<T>allSatisfy in class AbstractCollectionAdapter<T>public boolean noneSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
noneSatisfy in interface com.gs.collections.api.RichIterable<T>noneSatisfy in class AbstractCollectionAdapter<T>public <IV> IV injectInto(IV injectedValue,
com.gs.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function)
injectInto in interface com.gs.collections.api.RichIterable<T>injectInto in class AbstractCollectionAdapter<T>public void forEach(int fromIndex,
int toIndex,
com.gs.collections.api.block.procedure.Procedure<? super T> procedure)
forEach in interface com.gs.collections.api.ordered.OrderedIterable<T>public ArrayListAdapter<T> sortThis(Comparator<? super T> comparator)
sortThis in interface com.gs.collections.api.list.MutableList<T>public ArrayListAdapter<T> sortThis()
sortThis in interface com.gs.collections.api.list.MutableList<T>public ArrayListAdapter<T> with(T element)
public ArrayListAdapter<T> with(T element1, T element2)
public ArrayListAdapter<T> with(T element1, T element2, T element3)
public ArrayListAdapter<T> with(T... elements)
public ArrayListAdapter<T> without(T element)
public ArrayListAdapter<T> withAll(Iterable<? extends T> elements)
public ArrayListAdapter<T> withoutAll(Iterable<? extends T> elements)
public ArrayListAdapter<T> select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
select in interface com.gs.collections.api.collection.MutableCollection<T>select in interface com.gs.collections.api.list.ListIterable<T>select in interface com.gs.collections.api.list.MutableList<T>select in interface com.gs.collections.api.ordered.OrderedIterable<T>select in interface com.gs.collections.api.ordered.ReversibleIterable<T>select in interface com.gs.collections.api.RichIterable<T>select in class AbstractListAdapter<T>public ArrayListAdapter<T> reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
reject in interface com.gs.collections.api.collection.MutableCollection<T>reject in interface com.gs.collections.api.list.ListIterable<T>reject in interface com.gs.collections.api.list.MutableList<T>reject in interface com.gs.collections.api.ordered.OrderedIterable<T>reject in interface com.gs.collections.api.ordered.ReversibleIterable<T>reject in interface com.gs.collections.api.RichIterable<T>reject in class AbstractListAdapter<T>public com.gs.collections.api.partition.list.PartitionMutableList<T> partition(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface com.gs.collections.api.collection.MutableCollection<T>partition in interface com.gs.collections.api.list.ListIterable<T>partition in interface com.gs.collections.api.list.MutableList<T>partition in interface com.gs.collections.api.ordered.OrderedIterable<T>partition in interface com.gs.collections.api.ordered.ReversibleIterable<T>partition in interface com.gs.collections.api.RichIterable<T>partition in class AbstractListAdapter<T>public <P> com.gs.collections.api.partition.list.PartitionMutableList<T> partitionWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface com.gs.collections.api.collection.MutableCollection<T>partitionWith in interface com.gs.collections.api.list.ListIterable<T>partitionWith in interface com.gs.collections.api.list.MutableList<T>partitionWith in interface com.gs.collections.api.ordered.OrderedIterable<T>partitionWith in interface com.gs.collections.api.ordered.ReversibleIterable<T>partitionWith in interface com.gs.collections.api.RichIterable<T>partitionWith in class AbstractListAdapter<T>public <S> com.gs.collections.api.list.MutableList<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface com.gs.collections.api.collection.MutableCollection<T>selectInstancesOf in interface com.gs.collections.api.list.ListIterable<T>selectInstancesOf in interface com.gs.collections.api.list.MutableList<T>selectInstancesOf in interface com.gs.collections.api.ordered.OrderedIterable<T>selectInstancesOf in interface com.gs.collections.api.ordered.ReversibleIterable<T>selectInstancesOf in interface com.gs.collections.api.RichIterable<T>selectInstancesOf in class AbstractListAdapter<T>public <V> ArrayListAdapter<V> collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
collect in interface com.gs.collections.api.collection.MutableCollection<T>collect in interface com.gs.collections.api.list.ListIterable<T>collect in interface com.gs.collections.api.list.MutableList<T>collect in interface com.gs.collections.api.ordered.OrderedIterable<T>collect in interface com.gs.collections.api.ordered.ReversibleIterable<T>collect in interface com.gs.collections.api.RichIterable<T>collect in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableBooleanList collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction)
collectBoolean in interface com.gs.collections.api.collection.MutableCollection<T>collectBoolean in interface com.gs.collections.api.list.ListIterable<T>collectBoolean in interface com.gs.collections.api.list.MutableList<T>collectBoolean in interface com.gs.collections.api.ordered.OrderedIterable<T>collectBoolean in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectBoolean in interface com.gs.collections.api.RichIterable<T>collectBoolean in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableByteList collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction)
collectByte in interface com.gs.collections.api.collection.MutableCollection<T>collectByte in interface com.gs.collections.api.list.ListIterable<T>collectByte in interface com.gs.collections.api.list.MutableList<T>collectByte in interface com.gs.collections.api.ordered.OrderedIterable<T>collectByte in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectByte in interface com.gs.collections.api.RichIterable<T>collectByte in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableCharList collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super T> charFunction)
collectChar in interface com.gs.collections.api.collection.MutableCollection<T>collectChar in interface com.gs.collections.api.list.ListIterable<T>collectChar in interface com.gs.collections.api.list.MutableList<T>collectChar in interface com.gs.collections.api.ordered.OrderedIterable<T>collectChar in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectChar in interface com.gs.collections.api.RichIterable<T>collectChar in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableDoubleList collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction)
collectDouble in interface com.gs.collections.api.collection.MutableCollection<T>collectDouble in interface com.gs.collections.api.list.ListIterable<T>collectDouble in interface com.gs.collections.api.list.MutableList<T>collectDouble in interface com.gs.collections.api.ordered.OrderedIterable<T>collectDouble in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectDouble in interface com.gs.collections.api.RichIterable<T>collectDouble in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableFloatList collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction)
collectFloat in interface com.gs.collections.api.collection.MutableCollection<T>collectFloat in interface com.gs.collections.api.list.ListIterable<T>collectFloat in interface com.gs.collections.api.list.MutableList<T>collectFloat in interface com.gs.collections.api.ordered.OrderedIterable<T>collectFloat in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectFloat in interface com.gs.collections.api.RichIterable<T>collectFloat in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableIntList collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> intFunction)
collectInt in interface com.gs.collections.api.collection.MutableCollection<T>collectInt in interface com.gs.collections.api.list.ListIterable<T>collectInt in interface com.gs.collections.api.list.MutableList<T>collectInt in interface com.gs.collections.api.ordered.OrderedIterable<T>collectInt in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectInt in interface com.gs.collections.api.RichIterable<T>collectInt in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableLongList collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> longFunction)
collectLong in interface com.gs.collections.api.collection.MutableCollection<T>collectLong in interface com.gs.collections.api.list.ListIterable<T>collectLong in interface com.gs.collections.api.list.MutableList<T>collectLong in interface com.gs.collections.api.ordered.OrderedIterable<T>collectLong in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectLong in interface com.gs.collections.api.RichIterable<T>collectLong in class AbstractListAdapter<T>public com.gs.collections.api.list.primitive.MutableShortList collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction)
collectShort in interface com.gs.collections.api.collection.MutableCollection<T>collectShort in interface com.gs.collections.api.list.ListIterable<T>collectShort in interface com.gs.collections.api.list.MutableList<T>collectShort in interface com.gs.collections.api.ordered.OrderedIterable<T>collectShort in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectShort in interface com.gs.collections.api.RichIterable<T>collectShort in class AbstractListAdapter<T>public <V> ArrayListAdapter<V> flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
flatCollect in interface com.gs.collections.api.collection.MutableCollection<T>flatCollect in interface com.gs.collections.api.list.ListIterable<T>flatCollect in interface com.gs.collections.api.list.MutableList<T>flatCollect in interface com.gs.collections.api.ordered.OrderedIterable<T>flatCollect in interface com.gs.collections.api.ordered.ReversibleIterable<T>flatCollect in interface com.gs.collections.api.RichIterable<T>flatCollect in class AbstractListAdapter<T>public <V> ArrayListAdapter<V> collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, com.gs.collections.api.block.function.Function<? super T,? extends V> function)
collectIf in interface com.gs.collections.api.collection.MutableCollection<T>collectIf in interface com.gs.collections.api.list.ListIterable<T>collectIf in interface com.gs.collections.api.list.MutableList<T>collectIf in interface com.gs.collections.api.ordered.OrderedIterable<T>collectIf in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectIf in interface com.gs.collections.api.RichIterable<T>collectIf in class AbstractListAdapter<T>public int detectIndex(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
detectIndex in interface com.gs.collections.api.ordered.OrderedIterable<T>public int detectLastIndex(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
detectLastIndex in interface com.gs.collections.api.ordered.ReversibleIterable<T>public <V> FastListMultimap<V,T> groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface com.gs.collections.api.collection.MutableCollection<T>groupBy in interface com.gs.collections.api.list.ListIterable<T>groupBy in interface com.gs.collections.api.list.MutableList<T>groupBy in interface com.gs.collections.api.ordered.OrderedIterable<T>groupBy in interface com.gs.collections.api.ordered.ReversibleIterable<T>groupBy in interface com.gs.collections.api.RichIterable<T>groupBy in class AbstractListAdapter<T>public <V> FastListMultimap<V,T> groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface com.gs.collections.api.collection.MutableCollection<T>groupByEach in interface com.gs.collections.api.list.ListIterable<T>groupByEach in interface com.gs.collections.api.list.MutableList<T>groupByEach in interface com.gs.collections.api.ordered.OrderedIterable<T>groupByEach in interface com.gs.collections.api.ordered.ReversibleIterable<T>groupByEach in interface com.gs.collections.api.RichIterable<T>groupByEach in class AbstractListAdapter<T>public <P> ArrayListAdapter<T> selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface com.gs.collections.api.collection.MutableCollection<T>selectWith in interface com.gs.collections.api.list.ListIterable<T>selectWith in interface com.gs.collections.api.list.MutableList<T>selectWith in interface com.gs.collections.api.ordered.OrderedIterable<T>selectWith in interface com.gs.collections.api.ordered.ReversibleIterable<T>selectWith in interface com.gs.collections.api.RichIterable<T>selectWith in class AbstractListAdapter<T>public <P> ArrayListAdapter<T> rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface com.gs.collections.api.collection.MutableCollection<T>rejectWith in interface com.gs.collections.api.list.ListIterable<T>rejectWith in interface com.gs.collections.api.list.MutableList<T>rejectWith in interface com.gs.collections.api.ordered.OrderedIterable<T>rejectWith in interface com.gs.collections.api.ordered.ReversibleIterable<T>rejectWith in interface com.gs.collections.api.RichIterable<T>rejectWith in class AbstractListAdapter<T>public <P,A> ArrayListAdapter<A> collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends A> function, P parameter)
collectWith in interface com.gs.collections.api.collection.MutableCollection<T>collectWith in interface com.gs.collections.api.list.ListIterable<T>collectWith in interface com.gs.collections.api.list.MutableList<T>collectWith in interface com.gs.collections.api.ordered.OrderedIterable<T>collectWith in interface com.gs.collections.api.ordered.ReversibleIterable<T>collectWith in interface com.gs.collections.api.RichIterable<T>collectWith in class AbstractListAdapter<T>public ArrayListAdapter<T> distinct()
distinct in interface com.gs.collections.api.list.ListIterable<T>distinct in interface com.gs.collections.api.list.MutableList<T>distinct in interface com.gs.collections.api.ordered.OrderedIterable<T>distinct in interface com.gs.collections.api.ordered.ReversibleIterable<T>public ArrayListAdapter<T> distinct(com.gs.collections.api.block.HashingStrategy<? super T> hashingStrategy)
public <S> com.gs.collections.api.list.MutableList<com.gs.collections.api.tuple.Pair<T,S>> zip(Iterable<S> that)
zip in interface com.gs.collections.api.collection.MutableCollection<T>zip in interface com.gs.collections.api.list.ListIterable<T>zip in interface com.gs.collections.api.list.MutableList<T>zip in interface com.gs.collections.api.ordered.OrderedIterable<T>zip in interface com.gs.collections.api.ordered.ReversibleIterable<T>zip in interface com.gs.collections.api.RichIterable<T>zip in class AbstractListAdapter<T>public com.gs.collections.api.list.MutableList<com.gs.collections.api.tuple.Pair<T,Integer>> zipWithIndex()
zipWithIndex in interface com.gs.collections.api.collection.MutableCollection<T>zipWithIndex in interface com.gs.collections.api.list.ListIterable<T>zipWithIndex in interface com.gs.collections.api.list.MutableList<T>zipWithIndex in interface com.gs.collections.api.ordered.OrderedIterable<T>zipWithIndex in interface com.gs.collections.api.ordered.ReversibleIterable<T>zipWithIndex in interface com.gs.collections.api.RichIterable<T>zipWithIndex in class AbstractListAdapter<T>public com.gs.collections.api.list.MutableList<T> take(int count)
public com.gs.collections.api.list.MutableList<T> takeWhile(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
takeWhile in interface com.gs.collections.api.list.ListIterable<T>takeWhile in interface com.gs.collections.api.list.MutableList<T>takeWhile in interface com.gs.collections.api.ordered.OrderedIterable<T>takeWhile in interface com.gs.collections.api.ordered.ReversibleIterable<T>public com.gs.collections.api.list.MutableList<T> drop(int count)
public com.gs.collections.api.list.MutableList<T> dropWhile(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
dropWhile in interface com.gs.collections.api.list.ListIterable<T>dropWhile in interface com.gs.collections.api.list.MutableList<T>dropWhile in interface com.gs.collections.api.ordered.OrderedIterable<T>dropWhile in interface com.gs.collections.api.ordered.ReversibleIterable<T>public com.gs.collections.api.partition.list.PartitionMutableList<T> partitionWhile(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
partitionWhile in interface com.gs.collections.api.list.ListIterable<T>partitionWhile in interface com.gs.collections.api.list.MutableList<T>partitionWhile in interface com.gs.collections.api.ordered.OrderedIterable<T>partitionWhile in interface com.gs.collections.api.ordered.ReversibleIterable<T>public ReverseIterable<T> asReversed()
asReversed in interface com.gs.collections.api.ordered.ReversibleIterable<T>asReversed in class AbstractListAdapter<T>Copyright © 2004–2016. All rights reserved.