public abstract class AbstractMemoryEfficientMutableList<T> extends AbstractMutableList<T> implements org.eclipse.collections.api.list.FixedSizeList<T>, RandomAccess
| Constructor and Description |
|---|
AbstractMemoryEfficientMutableList() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
T element) |
boolean |
add(T o) |
boolean |
addAll(Collection<? extends T> collection) |
boolean |
addAll(int index,
Collection<? extends T> collection) |
boolean |
addAllIterable(Iterable<? extends T> iterable) |
void |
clear() |
org.eclipse.collections.api.list.FixedSizeList<T> |
clone() |
ListIterator<T> |
listIterator() |
ListIterator<T> |
listIterator(int index) |
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> |
subList(int fromIndex,
int toIndex) |
org.eclipse.collections.api.list.FixedSizeList<T> |
toReversed() |
org.eclipse.collections.api.list.MutableList<T> |
withAll(Iterable<? extends T> elements) |
org.eclipse.collections.api.list.MutableList<T> |
without(T element) |
org.eclipse.collections.api.list.MutableList<T> |
withoutAll(Iterable<? extends T> elements) |
allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, asParallel, asReversed, asSynchronized, asUnmodifiable, binarySearch, binarySearch, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectIf, collectInt, collectLong, collectShort, collectWith, collectWith, contains, containsAll, corresponds, count, countWith, detect, detectIfNone, detectIndex, detectLastIndex, detectWith, detectWithIfNone, distinct, distinct, drop, dropWhile, each, equals, flatCollect, flatCollect, forEach, forEachWith, forEachWithIndex, forEachWithIndex, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, hashCode, indexOf, injectInto, injectInto, injectInto, injectInto, injectIntoWith, iterator, lastIndexOf, max, max, maxBy, min, min, minBy, newEmpty, noneSatisfy, noneSatisfyWith, partition, partitionWhile, partitionWith, reject, reject, rejectWith, rejectWith, reverseForEach, reverseThis, select, select, selectAndRejectWith, selectInstancesOf, selectWith, selectWith, shuffleThis, shuffleThis, sortThis, sortThis, sortThisBy, sortThisByBoolean, sortThisByByte, sortThisByChar, sortThisByDouble, sortThisByFloat, sortThisByInt, sortThisByLong, sortThisByShort, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, take, takeWhile, tap, toImmutable, toList, toSet, toSortedList, toSortedList, toStack, with, zip, zip, zipWithIndex, zipWithIndexaggregateBy, aggregateInPlaceBy, chunkappendString, asLazy, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAllArguments, containsAllIterable, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, isEmpty, makeString, makeString, makeString, notEmpty, sumByDouble, sumByFloat, sumByInt, sumByLong, toArray, toArray, toBag, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringasSynchronized, asUnmodifiable, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, distinct, distinct, drop, dropWhile, flatCollect, groupBy, groupByEach, newEmpty, partition, partitionWhile, partitionWith, reject, rejectWith, reverseThis, select, selectInstancesOf, selectWith, shuffleThis, shuffleThis, sortThis, sortThis, sortThisBy, sortThisByBoolean, sortThisByByte, sortThisByChar, sortThisByDouble, sortThisByFloat, sortThisByInt, sortThisByLong, sortThisByShort, take, takeWhile, tap, toImmutable, with, zip, zipWithIndexcontains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, replaceAll, set, size, sort, spliterator, toArray, toArrayasParallel, binarySearch, binarySearch, equals, get, getFirst, getLast, hashCode, lastIndexOf, toStackasReversed, detectLastIndex, reverseForEachcorresponds, detectIndex, forEach, forEachWithIndex, forEachWithIndex, indexOfallSatisfy, 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, toStringaggregateBy, aggregateInPlaceBy, groupByUniqueKey, injectIntoWith, selectAndRejectWithparallelStream, removeIf, streampublic org.eclipse.collections.api.list.FixedSizeList<T> clone()
clone in interface org.eclipse.collections.api.list.MutableList<T>clone in class AbstractMutableList<T>public boolean add(T o)
add in interface Collection<T>add in interface List<T>add in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>add in class AbstractMutableCollection<T>public boolean addAll(Collection<? extends T> collection)
addAll in interface Collection<T>addAll in interface List<T>addAll in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>addAll in class AbstractMutableCollection<T>public boolean addAll(int index,
Collection<? extends T> collection)
public boolean addAllIterable(Iterable<? extends T> iterable)
addAllIterable in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>addAllIterable in interface org.eclipse.collections.api.collection.MutableCollection<T>addAllIterable in class AbstractMutableCollection<T>public boolean remove(Object o)
remove in interface Collection<T>remove in interface List<T>remove in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>remove in class AbstractMutableCollection<T>public boolean removeAll(Collection<?> collection)
removeAll in interface Collection<T>removeAll in interface List<T>removeAll in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>removeAll in class AbstractMutableList<T>public boolean removeAllIterable(Iterable<?> iterable)
removeAllIterable in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>removeAllIterable in interface org.eclipse.collections.api.collection.MutableCollection<T>removeAllIterable in class AbstractMutableCollection<T>public boolean removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
removeIf in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>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.FixedSizeCollection<T>removeIfWith in interface org.eclipse.collections.api.collection.MutableCollection<T>removeIfWith in class AbstractMutableList<T>public boolean retainAll(Collection<?> collection)
retainAll in interface Collection<T>retainAll in interface List<T>retainAll in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>retainAll in class AbstractMutableList<T>public boolean retainAllIterable(Iterable<?> iterable)
retainAllIterable in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>retainAllIterable in interface org.eclipse.collections.api.collection.MutableCollection<T>retainAllIterable in class AbstractMutableCollection<T>public void clear()
public org.eclipse.collections.api.list.FixedSizeList<T> toReversed()
toReversed in interface org.eclipse.collections.api.list.FixedSizeList<T>toReversed in interface org.eclipse.collections.api.list.ListIterable<T>toReversed in interface org.eclipse.collections.api.list.MutableList<T>toReversed in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>toReversed in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> subList(int fromIndex, int toIndex)
public org.eclipse.collections.api.list.MutableList<T> without(T element)
without in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>without in interface org.eclipse.collections.api.collection.MutableCollection<T>without in interface org.eclipse.collections.api.list.MutableList<T>without in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> withAll(Iterable<? extends T> elements)
withAll in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>withAll in interface org.eclipse.collections.api.collection.MutableCollection<T>withAll in interface org.eclipse.collections.api.list.MutableList<T>withAll in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> withoutAll(Iterable<? extends T> elements)
withoutAll in interface org.eclipse.collections.api.collection.FixedSizeCollection<T>withoutAll in interface org.eclipse.collections.api.collection.MutableCollection<T>withoutAll in interface org.eclipse.collections.api.list.MutableList<T>withoutAll 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 ListIterator<T> listIterator()
listIterator in interface List<T>listIterator in interface org.eclipse.collections.api.list.ListIterable<T>listIterator in class AbstractMutableList<T>Copyright © 2004–2018. All rights reserved.