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(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
allSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
anySatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
anySatisfyWith(com.gs.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> com.gs.collections.api.list.MutableList<V> |
collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<V> com.gs.collections.api.list.MutableList<V> |
collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<P,A> com.gs.collections.api.list.MutableList<A> |
collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends A> function,
P parameter) |
<P,A,R extends Collection<A>> |
collectWith(com.gs.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(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) |
<P> int |
countWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
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) |
<P> T |
detectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P> T |
detectWithIfNone(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
com.gs.collections.api.block.function.Function0<? extends T> function) |
com.gs.collections.api.list.MutableList<T> |
distinct() |
com.gs.collections.api.list.MutableList<T> |
distinct(com.gs.collections.api.block.HashingStrategy<? super T> hashingStrategy) |
com.gs.collections.api.list.MutableList<T> |
drop(int count) |
void |
each(com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
boolean |
equals(Object that) |
<V> com.gs.collections.api.list.MutableList<V> |
flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V,R extends Collection<V>> |
flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function,
R target) |
void |
forEach(int fromIndex,
int toIndex,
com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
<P> void |
forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter) |
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) |
T |
get(int index) |
T |
getFirst() |
T |
getLast() |
int |
hashCode() |
int |
indexOf(Object item) |
<IV> IV |
injectInto(IV injectedValue,
com.gs.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function) |
<IV,P> IV |
injectIntoWith(IV injectValue,
com.gs.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(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
noneSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
notEmpty() |
com.gs.collections.api.list.MutableList<T> |
reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<R extends Collection<T>> |
reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P> com.gs.collections.api.list.MutableList<T> |
rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
rejectWith(com.gs.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(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
removeIfWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
retainAll(Collection<?> collection) |
boolean |
retainAllIterable(Iterable<?> iterable) |
com.gs.collections.api.list.MutableList<T> |
select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<R extends Collection<T>> |
select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P> com.gs.collections.api.tuple.Twin<com.gs.collections.api.list.MutableList<T>> |
selectAndRejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P> com.gs.collections.api.list.MutableList<T> |
selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
int |
size() |
com.gs.collections.api.list.MutableList<T> |
subList(int fromIndex,
int toIndex) |
com.gs.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 com.gs.collections.api.RichIterable<T>notEmpty in class AbstractRichIterable<T>public T getFirst()
public T getLast()
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 AbstractMutableList<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 AbstractMutableList<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>forEachWithIndex in class AbstractMutableList<T>public boolean removeIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
removeIf in interface com.gs.collections.api.collection.MutableCollection<T>removeIf in class AbstractMutableList<T>public <P> boolean removeIfWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
removeIfWith in interface com.gs.collections.api.collection.MutableCollection<T>removeIfWith in class AbstractMutableList<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 AbstractMutableList<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 AbstractMutableList<T>public int detectIndex(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
detectIndex in interface com.gs.collections.api.ordered.OrderedIterable<T>detectIndex in class AbstractMutableList<T>public int detectLastIndex(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
detectLastIndex in interface com.gs.collections.api.ordered.ReversibleIterable<T>detectLastIndex in class AbstractMutableList<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 AbstractMutableList<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>corresponds in class AbstractMutableList<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 AbstractMutableList<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 AbstractMutableList<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 AbstractMutableList<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 AbstractMutableList<T>public com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <R extends Collection<T>> R select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, R target)
select in interface com.gs.collections.api.RichIterable<T>select in class AbstractMutableList<T>public com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <R extends Collection<T>> R reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, R target)
reject in interface com.gs.collections.api.RichIterable<T>reject in class AbstractMutableList<T>public <V> com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <V,R extends Collection<V>> R collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function, R target)
collect in interface com.gs.collections.api.RichIterable<T>collect in class AbstractMutableList<T>public <V> com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <V,R extends Collection<V>> R collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, com.gs.collections.api.block.function.Function<? super T,? extends V> function, R target)
collectIf in interface com.gs.collections.api.RichIterable<T>collectIf in class AbstractMutableList<T>public <V> com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <V,R extends Collection<V>> R flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function, R target)
flatCollect in interface com.gs.collections.api.RichIterable<T>flatCollect in class AbstractMutableList<T>public <P> com.gs.collections.api.tuple.Twin<com.gs.collections.api.list.MutableList<T>> selectAndRejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectAndRejectWith in interface com.gs.collections.api.collection.MutableCollection<T>selectAndRejectWith in class AbstractMutableList<T>public int size()
public boolean isEmpty()
isEmpty in interface com.gs.collections.api.RichIterable<T>isEmpty in interface Collection<T>isEmpty in interface List<T>isEmpty in class AbstractRichIterable<T>public boolean contains(Object o)
contains in interface com.gs.collections.api.RichIterable<T>contains in interface Collection<T>contains in interface List<T>contains in class AbstractMutableList<T>public Object[] toArray()
toArray in interface com.gs.collections.api.RichIterable<T>toArray in interface Collection<T>toArray in interface List<T>toArray in class AbstractRichIterable<T>public <E> E[] toArray(E[] array)
toArray in interface com.gs.collections.api.RichIterable<T>toArray in interface Collection<T>toArray in interface List<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 com.gs.collections.api.RichIterable<T>containsAll in interface Collection<T>containsAll in interface List<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 com.gs.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 com.gs.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 com.gs.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 com.gs.collections.api.list.ListIterable<T>lastIndexOf in interface List<T>lastIndexOf in class AbstractMutableList<T>public ListIterator<T> listIterator(int index)
listIterator in interface com.gs.collections.api.list.ListIterable<T>listIterator in interface List<T>listIterator in class AbstractMutableList<T>public com.gs.collections.api.list.MutableList<T> subList(int fromIndex, int toIndex)
public boolean equals(Object that)
equals in interface com.gs.collections.api.list.ListIterable<T>equals in interface Collection<T>equals in interface List<T>equals in class AbstractMutableList<T>public boolean abstractArrayAdapterEquals(AbstractArrayAdapter<?> list)
public int hashCode()
hashCode in interface com.gs.collections.api.list.ListIterable<T>hashCode in interface Collection<T>hashCode in interface List<T>hashCode in class AbstractMutableList<T>public <P> void forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super T,? super P> procedure, P parameter)
forEachWith in interface com.gs.collections.api.InternalIterable<T>forEachWith in class AbstractMutableList<T>public <P> com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <P,R extends Collection<T>> R selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
selectWith in interface com.gs.collections.api.RichIterable<T>selectWith in class AbstractMutableList<T>public <P> com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <P,R extends Collection<T>> R rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
rejectWith in interface com.gs.collections.api.RichIterable<T>rejectWith in class AbstractMutableList<T>public <P,A> com.gs.collections.api.list.MutableList<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 AbstractMutableList<T>public <P,A,R extends Collection<A>> R collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends A> function, P parameter, R target)
collectWith in interface com.gs.collections.api.RichIterable<T>collectWith in class AbstractMutableList<T>public <IV,P> IV injectIntoWith(IV injectValue,
com.gs.collections.api.block.function.Function3<? super IV,? super T,? super P,? extends IV> function,
P parameter)
injectIntoWith in interface com.gs.collections.api.collection.MutableCollection<T>injectIntoWith in class AbstractMutableList<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>forEach in class AbstractMutableList<T>public <P> T detectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
detectWith in interface com.gs.collections.api.RichIterable<T>detectWith in class AbstractMutableList<T>public <P> T detectWithIfNone(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, com.gs.collections.api.block.function.Function0<? extends T> function)
detectWithIfNone in interface com.gs.collections.api.RichIterable<T>detectWithIfNone in class AbstractMutableList<T>public <P> int countWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
countWith in interface com.gs.collections.api.RichIterable<T>countWith in class AbstractMutableList<T>public <P> boolean anySatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
anySatisfyWith in interface com.gs.collections.api.RichIterable<T>anySatisfyWith in class AbstractMutableList<T>public <P> boolean allSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
allSatisfyWith in interface com.gs.collections.api.RichIterable<T>allSatisfyWith in class AbstractMutableList<T>public <P> boolean noneSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
noneSatisfyWith in interface com.gs.collections.api.RichIterable<T>noneSatisfyWith in class AbstractMutableList<T>public com.gs.collections.api.list.MutableList<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>distinct in class AbstractMutableList<T>public com.gs.collections.api.list.MutableList<T> distinct(com.gs.collections.api.block.HashingStrategy<? super T> hashingStrategy)
distinct in interface com.gs.collections.api.list.ListIterable<T>distinct in interface com.gs.collections.api.list.MutableList<T>distinct in class AbstractMutableList<T>public void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface com.gs.collections.api.RichIterable<T>appendString in class AbstractMutableList<T>public com.gs.collections.api.list.MutableList<T> take(int count)
public com.gs.collections.api.list.MutableList<T> drop(int count)
Copyright © 2004–2016. All rights reserved.