Uses of Class
org.magicwerk.brownies.collections.IList
-
Packages that use IList Package Description org.magicwerk.brownies.collections Brownies Collections complements the Java Collections Framework.org.magicwerk.brownies.collections.helper This packages contains helper classes for the package org.magicwerk.brownies.collections.org.magicwerk.brownies.collections.primitive This packages contains implementations of GapList and BigList for primitive data types. -
-
Uses of IList in org.magicwerk.brownies.collections
Subclasses of IList in org.magicwerk.brownies.collections Modifier and Type Class Description classBigList<E>BigList is a list optimized for storing large number of elements.(package private) static classBigList.Block<T>A block stores in maximum blockSize number of elements.protected static classBigList.ReadOnlyBigList<E>A read-only version ofKey1List.classGapList<E>Class {link GapList} combines the strengths of bothArrayListandLinkedList.protected static classGapList.ReadOnlyList<E>A read-only version ofGapList.classKey1List<E,K>Key1List implements a key list with 1 key.protected static classKey1List.ReadOnlyKey1List<E,K>A read-only version ofKey1List.classKey2List<E,K1,K2>Key2List implements a key list with 2 keys.protected static classKey2List.ReadOnlyKey2List<E,K1,K2>A read-only version ofKey2List.(package private) static classKeyCollectionImpl.KeyMapList<E>List type used to store multiple elements.classKeyList<E>KeyList implements a list.protected static classKeyList.ImmutableKeyList<E>A read-only version ofKeyList.classKeyListImpl<E>A KeyList add key handling features to GapList.Fields in org.magicwerk.brownies.collections declared as IList Modifier and Type Field Description (package private) IList<K>KeyCollectionImpl.KeyMap. keysListKey storage if this is a KeyListImpl sorted by this key map, otherwise null.(package private) IList<E>IListAsDeque. list(package private) IList<E>KeyListImpl. listList where the list content of this KeyListImpl is stored (never null).Methods in org.magicwerk.brownies.collections that return IList Modifier and Type Method Description IList<E>IList. clone()Returns a shallow copy of this list.abstract IList<E>IList. copy()Returns a shallow copy of this list.IList<E>IList. crop()Returns a copy this list but without elements.protected IList<E>BigList. doCreate(int capacity)protected abstract IList<E>IList. doCreate(int capacity)Create list with specified capacity.protected IList<E>KeyListImpl. doCreate(int capacity)IList<E>IList. extract(int index, int len)Removes specified range of elements from list and return them.IList<E>IList. extractIf(java.util.function.Predicate<? super E> predicate)Removes and returns all elements in the list which match the predicate.IList<E>IList. filter(java.util.function.Predicate<? super E> predicate)Create a new list by applying the specified filter to all elements.<R> IList<R>ICollection. filterMap(java.util.function.Predicate<E> filter, java.util.function.Function<E,R> func)Create a new list by applying the specified filter first and then the mapping function to all elements selected.static <E,R,C extends java.util.Collection<R>>
IList<R>ICollectionTools. filterMap(java.util.Collection<E> coll, java.util.function.Predicate<E> filter, java.util.function.Function<E,R> func)Create a new list by applying the specified filter first and then the mapping function to all elements selected.<R> IList<R>IList. filterMap(java.util.function.Predicate<E> filter, java.util.function.Function<E,R> func)<R> IList<R>KeyCollectionImpl. filterMap(java.util.function.Predicate<E> filter, java.util.function.Function<E,R> func)<R,C extends java.util.Collection<R>>
IList<R>ICollection. flatMap(java.util.function.Function<E,C> func)Create a new list by applying the specified mapping function to all elements.<R,C extends java.util.Collection<R>>
IList<R>IList. flatMap(java.util.function.Function<E,C> func)<R,C extends java.util.Collection<R>>
IList<R>KeyCollectionImpl. flatMap(java.util.function.Function<E,C> func)IList<E>IList. getAll(int index, int len)Returns specified range of elements from list.IList<E>IList. getAll(E elem)Returns all elements in the list equal to the specified element.IList<E>Key1List. getAll(E elem)IList<E>Key2List. getAll(E elem)IList<E>KeyList. getAll(E elem)IList<E>KeyListImpl. getAll(E elem)IList<E>KeyListImpl. getAllByKey(int keyIndex, java.lang.Object key)Returns a list with all elements with the specified key.IList<E>Key1List. getAllByKey1(K key)Returns all elements with specified key.IList<E>Key2List. getAllByKey1(K1 key)Returns all elements with specified key.IList<E>Key2List. getAllByKey2(K2 key)Returns all elements with specified key.protected IList<?>KeyCollectionImpl. getAllKeys(int keyIndex)Returns list containing all keys in element order.protected IList<java.lang.Object>KeyListImpl. getAllKeys(int keyIndex)Returns list containing all keys in element order.IList<K>Key1Collection. getAllKeys1()Returns list containing all keys in element order.IList<K>Key1List. getAllKeys1()Returns list containing all keys in element order.IList<K1>Key2Collection. getAllKeys1()Returns list containing all keys in element order.IList<K1>Key2List. getAllKeys1()Returns list containing all keys in element order.IList<K2>Key2Collection. getAllKeys2()Returns list containing all keys in element order.IList<K2>Key2List. getAllKeys2()Returns list containing all keys in element order.abstract IList<E>IList. immutableList()Returns an immutable copy of this list.(package private) IList<?>KeyCollectionImpl.BuilderImpl. initList()<R> IList<R>ICollection. map(java.util.function.Function<E,R> func)Create a new list by applying the specified mapping function to all elements.<R> IList<R>IList. map(java.util.function.Function<E,R> func)<R> IList<R>KeyCollectionImpl. map(java.util.function.Function<E,R> func)<R> IList<R>ICollection. mapFilter(java.util.function.Function<E,R> func, java.util.function.Predicate<R> filter)Create a new list by applying the specified mapping function to all elements and then filtering it.static <E,R>
IList<R>ICollectionTools. mapFilter(java.util.Collection<E> coll, java.util.function.Function<E,R> func, java.util.function.Predicate<R> filter)Create a new list by applying the specified mapping function to all elements and then filtering it.<R> IList<R>IList. mapFilter(java.util.function.Function<E,R> func, java.util.function.Predicate<R> filter)<R> IList<R>KeyCollectionImpl. mapFilter(java.util.function.Function<E,R> func, java.util.function.Predicate<R> filter)IList<E>IList. removeAll(E elem)Removes all equal elements.IList<E>Key1List. removeAll(E elem)IList<E>Key2List. removeAll(E elem)IList<E>KeyList. removeAll(E elem)IList<E>KeyListImpl. removeAll(E elem)protected IList<E>Key1List.ReadOnlyKey1List. removeAllByKey(int keyIndex, java.lang.Object key)protected IList<E>Key2List.ReadOnlyKey2List. removeAllByKey(int keyIndex, java.lang.Object key)protected IList<E>KeyList.ImmutableKeyList. removeAllByKey(int keyIndex, java.lang.Object key)protected IList<E>KeyListImpl. removeAllByKey(int keyIndex, java.lang.Object key)Removes element by key.IList<E>Key1List. removeAllByKey1(K key)Removes all elements with specified key.IList<E>Key2List. removeAllByKey1(K1 key)Removes all elements with specified key.IList<E>Key2List. removeAllByKey2(K2 key)Removes all elements with specified key.IList<E>IList. transformedList(java.util.function.UnaryOperator<E> op)Create a new list by applying the specified transforming operator to all elements.abstract IList<E>IList. unmodifiableList()Returns an unmodifiable view of this list.IList<E>KeyListImpl. unwrap()Returns the elements stored in the KeyList as simple IList without constraints etc.Methods in org.magicwerk.brownies.collections with parameters of type IList Modifier and Type Method Description booleanIList. addAll(int index, IList<? extends E> list)Inserts all of the elements in the specified list into this list, starting at the specified position.booleanIList. addAll(IList<? extends E> list)Adds all of the elements in the specified list into this list.protected voidBigList. doAssign(IList<E> that)protected voidGapList. doAssign(IList<E> that)protected abstract voidIList. doAssign(IList<E> that)Assign this list the content of the that list.protected voidKeyListImpl. doAssign(IList<E> that)protected voidBigList. doClone(IList<E> that)protected voidGapList. doClone(IList<E> that)protected abstract voidIList. doClone(IList<E> that)Initialize this object after the bitwise copy has been made by Object.clone().protected voidKeyListImpl. doClone(IList<E> that)(package private) voidIList. doTransfer(int transferMode, int srcIndex, int srcLen, IList<? super E> dst, int dstIndex, int dstLen)(package private) voidIList. doTransferSwap(int srcIndex, IList<E> dst, int dstIndex, int len)voidIList. initAll(IList<? extends E> list)Initializes the list so it will afterwards only contain the elements of the collection.voidIList. putAll(int index, IList<? extends E> list)Set or add the specified elements.booleanIList. removeAll(IList<?> coll)voidIList. replaceAll(int index, int len, IList<? extends E> list)Replaces the specified range with new elements.booleanIList. retainAll(IList<?> coll)voidIList. setAll(int index, IList<? extends E> list)Sets the specified elements.static <E> voidIList. transferCopy(IList<E> src, int srcIndex, int srcLen, IList<? super E> dst, int dstIndex, int dstLen)Copies elements from one list to another.static <E> voidIList. transferMove(IList<E> src, int srcIndex, int srcLen, IList<? super E> dst, int dstIndex, int dstLen)Moves elements from one list to another by setting it to null in the source list.static <E> voidIList. transferRemove(IList<E> src, int srcIndex, int srcLen, IList<? super E> dst, int dstIndex, int dstLen)Moves elements from one list to another by removing it from the source list.static <E> voidIList. transferSwap(IList<E> src, int srcIndex, IList<E> dst, int dstIndex, int len)Swaps elements from two lists.Constructors in org.magicwerk.brownies.collections with parameters of type IList Constructor Description IListAsDeque(IList<E> list) -
Uses of IList in org.magicwerk.brownies.collections.helper
Methods in org.magicwerk.brownies.collections.helper that return IList Modifier and Type Method Description static IList<?>BigLists. createWrapperList(java.lang.Class<?> type)Create a BigList wrapping a primitive BigList, e.g.static IList<?>GapLists. createWrapperList(java.lang.Class<?> type)Create a GapList wrapping a primitive GapList, e.g.static IList<?>GapLists. createWrapperList(java.lang.Class<?> type, int capacity)Create a GapList wrapping a primitive GapList, e.g. -
Uses of IList in org.magicwerk.brownies.collections.primitive
Subclasses of IList in org.magicwerk.brownies.collections.primitive Modifier and Type Class Description classBooleanObjBigListBooleanObjBigList implements the List interface and uses an instance of BooleanBigList for storage.protected static classBooleanObjBigList.ImmutableBooleanObjBigListAn immutable version of a BigList.classBooleanObjGapListBooleanObjGapList implements the List interface and uses an instance of BooleanGapList for storage.protected static classBooleanObjGapList.ImmutableBooleanObjGapListAn immutable version of a GapList.classByteObjBigListByteObjBigList implements the List interface and uses an instance of ByteBigList for storage.protected static classByteObjBigList.ImmutableByteObjBigListAn immutable version of a BigList.classByteObjGapListByteObjGapList implements the List interface and uses an instance of ByteGapList for storage.protected static classByteObjGapList.ImmutableByteObjGapListAn immutable version of a GapList.classCharObjBigListCharObjBigList implements the List interface and uses an instance of CharBigList for storage.protected static classCharObjBigList.ImmutableCharObjBigListAn immutable version of a BigList.classCharObjGapListCharObjGapList implements the List interface and uses an instance of CharGapList for storage.protected static classCharObjGapList.ImmutableCharObjGapListAn immutable version of a GapList.classDoubleObjBigListDoubleObjBigList implements the List interface and uses an instance of DoubleBigList for storage.protected static classDoubleObjBigList.ImmutableDoubleObjBigListAn immutable version of a BigList.classDoubleObjGapListDoubleObjGapList implements the List interface and uses an instance of DoubleGapList for storage.protected static classDoubleObjGapList.ImmutableDoubleObjGapListAn immutable version of a GapList.classFloatObjBigListFloatObjBigList implements the List interface and uses an instance of FloatBigList for storage.protected static classFloatObjBigList.ImmutableFloatObjBigListAn immutable version of a BigList.classFloatObjGapListFloatObjGapList implements the List interface and uses an instance of FloatGapList for storage.protected static classFloatObjGapList.ImmutableFloatObjGapListAn immutable version of a GapList.classIntObjBigListIntObjBigList implements the List interface and uses an instance of IntBigList for storage.protected static classIntObjBigList.ImmutableIntObjBigListAn immutable version of a BigList.classIntObjGapListIntObjGapList implements the List interface and uses an instance of IntGapList for storage.protected static classIntObjGapList.ImmutableIntObjGapListAn immutable version of a GapList.classLongObjBigListLongObjBigList implements the List interface and uses an instance of LongBigList for storage.protected static classLongObjBigList.ImmutableLongObjBigListAn immutable version of a BigList.classLongObjGapListLongObjGapList implements the List interface and uses an instance of LongGapList for storage.protected static classLongObjGapList.ImmutableLongObjGapListAn immutable version of a GapList.classShortObjBigListShortObjBigList implements the List interface and uses an instance of ShortBigList for storage.protected static classShortObjBigList.ImmutableShortObjBigListAn immutable version of a BigList.classShortObjGapListShortObjGapList implements the List interface and uses an instance of ShortGapList for storage.protected static classShortObjGapList.ImmutableShortObjGapListAn immutable version of a GapList.Methods in org.magicwerk.brownies.collections.primitive that return IList Modifier and Type Method Description IList<java.lang.Boolean>BooleanObjBigList. doCreate(int capacity)IList<java.lang.Boolean>BooleanObjGapList. doCreate(int capacity)IList<java.lang.Byte>ByteObjBigList. doCreate(int capacity)IList<java.lang.Byte>ByteObjGapList. doCreate(int capacity)IList<java.lang.Character>CharObjBigList. doCreate(int capacity)IList<java.lang.Character>CharObjGapList. doCreate(int capacity)IList<java.lang.Double>DoubleObjBigList. doCreate(int capacity)IList<java.lang.Double>DoubleObjGapList. doCreate(int capacity)IList<java.lang.Float>FloatObjBigList. doCreate(int capacity)IList<java.lang.Float>FloatObjGapList. doCreate(int capacity)IList<java.lang.Integer>IntObjBigList. doCreate(int capacity)IList<java.lang.Integer>IntObjGapList. doCreate(int capacity)IList<java.lang.Long>LongObjBigList. doCreate(int capacity)IList<java.lang.Long>LongObjGapList. doCreate(int capacity)IList<java.lang.Short>ShortObjBigList. doCreate(int capacity)IList<java.lang.Short>ShortObjGapList. doCreate(int capacity)<R> IList<R>IBooleanList. filterMap(java.util.function.Predicate<java.lang.Boolean> filter, java.util.function.Function<java.lang.Boolean,R> func)<R> IList<R>IByteList. filterMap(java.util.function.Predicate<java.lang.Byte> filter, java.util.function.Function<java.lang.Byte,R> func)<R> IList<R>ICharList. filterMap(java.util.function.Predicate<java.lang.Character> filter, java.util.function.Function<java.lang.Character,R> func)<R> IList<R>IDoubleList. filterMap(java.util.function.Predicate<java.lang.Double> filter, java.util.function.Function<java.lang.Double,R> func)<R> IList<R>IFloatList. filterMap(java.util.function.Predicate<java.lang.Float> filter, java.util.function.Function<java.lang.Float,R> func)<R> IList<R>IIntList. filterMap(java.util.function.Predicate<java.lang.Integer> filter, java.util.function.Function<java.lang.Integer,R> func)<R> IList<R>ILongList. filterMap(java.util.function.Predicate<java.lang.Long> filter, java.util.function.Function<java.lang.Long,R> func)<R> IList<R>IShortList. filterMap(java.util.function.Predicate<java.lang.Short> filter, java.util.function.Function<java.lang.Short,R> func)<R,C extends java.util.Collection<R>>
IList<R>IBooleanList. flatMap(java.util.function.Function<java.lang.Boolean,C> func)<R,C extends java.util.Collection<R>>
IList<R>IByteList. flatMap(java.util.function.Function<java.lang.Byte,C> func)<R,C extends java.util.Collection<R>>
IList<R>ICharList. flatMap(java.util.function.Function<java.lang.Character,C> func)<R,C extends java.util.Collection<R>>
IList<R>IDoubleList. flatMap(java.util.function.Function<java.lang.Double,C> func)<R,C extends java.util.Collection<R>>
IList<R>IFloatList. flatMap(java.util.function.Function<java.lang.Float,C> func)<R,C extends java.util.Collection<R>>
IList<R>IIntList. flatMap(java.util.function.Function<java.lang.Integer,C> func)<R,C extends java.util.Collection<R>>
IList<R>ILongList. flatMap(java.util.function.Function<java.lang.Long,C> func)<R,C extends java.util.Collection<R>>
IList<R>IShortList. flatMap(java.util.function.Function<java.lang.Short,C> func)<R> IList<R>IBooleanList. map(java.util.function.Function<java.lang.Boolean,R> func)<R> IList<R>IByteList. map(java.util.function.Function<java.lang.Byte,R> func)<R> IList<R>ICharList. map(java.util.function.Function<java.lang.Character,R> func)<R> IList<R>IDoubleList. map(java.util.function.Function<java.lang.Double,R> func)<R> IList<R>IFloatList. map(java.util.function.Function<java.lang.Float,R> func)<R> IList<R>IIntList. map(java.util.function.Function<java.lang.Integer,R> func)<R> IList<R>ILongList. map(java.util.function.Function<java.lang.Long,R> func)<R> IList<R>IShortList. map(java.util.function.Function<java.lang.Short,R> func)<R> IList<R>IBooleanList. mapFilter(java.util.function.Function<java.lang.Boolean,R> func, java.util.function.Predicate<R> filter)<R> IList<R>IByteList. mapFilter(java.util.function.Function<java.lang.Byte,R> func, java.util.function.Predicate<R> filter)<R> IList<R>ICharList. mapFilter(java.util.function.Function<java.lang.Character,R> func, java.util.function.Predicate<R> filter)<R> IList<R>IDoubleList. mapFilter(java.util.function.Function<java.lang.Double,R> func, java.util.function.Predicate<R> filter)<R> IList<R>IFloatList. mapFilter(java.util.function.Function<java.lang.Float,R> func, java.util.function.Predicate<R> filter)<R> IList<R>IIntList. mapFilter(java.util.function.Function<java.lang.Integer,R> func, java.util.function.Predicate<R> filter)<R> IList<R>ILongList. mapFilter(java.util.function.Function<java.lang.Long,R> func, java.util.function.Predicate<R> filter)<R> IList<R>IShortList. mapFilter(java.util.function.Function<java.lang.Short,R> func, java.util.function.Predicate<R> filter)Methods in org.magicwerk.brownies.collections.primitive with parameters of type IList Modifier and Type Method Description booleanBooleanObjBigList. addAll(int index, IList<? extends java.lang.Boolean> list2)booleanBooleanObjBigList. addAll(IList<? extends java.lang.Boolean> list2)booleanBooleanObjGapList. addAll(int index, IList<? extends java.lang.Boolean> list2)booleanBooleanObjGapList. addAll(IList<? extends java.lang.Boolean> list2)booleanByteObjBigList. addAll(int index, IList<? extends java.lang.Byte> list2)booleanByteObjBigList. addAll(IList<? extends java.lang.Byte> list2)booleanByteObjGapList. addAll(int index, IList<? extends java.lang.Byte> list2)booleanByteObjGapList. addAll(IList<? extends java.lang.Byte> list2)booleanCharObjBigList. addAll(int index, IList<? extends java.lang.Character> list2)booleanCharObjBigList. addAll(IList<? extends java.lang.Character> list2)booleanCharObjGapList. addAll(int index, IList<? extends java.lang.Character> list2)booleanCharObjGapList. addAll(IList<? extends java.lang.Character> list2)booleanDoubleObjBigList. addAll(int index, IList<? extends java.lang.Double> list2)booleanDoubleObjBigList. addAll(IList<? extends java.lang.Double> list2)booleanDoubleObjGapList. addAll(int index, IList<? extends java.lang.Double> list2)booleanDoubleObjGapList. addAll(IList<? extends java.lang.Double> list2)booleanFloatObjBigList. addAll(int index, IList<? extends java.lang.Float> list2)booleanFloatObjBigList. addAll(IList<? extends java.lang.Float> list2)booleanFloatObjGapList. addAll(int index, IList<? extends java.lang.Float> list2)booleanFloatObjGapList. addAll(IList<? extends java.lang.Float> list2)booleanIntObjBigList. addAll(int index, IList<? extends java.lang.Integer> list2)booleanIntObjBigList. addAll(IList<? extends java.lang.Integer> list2)booleanIntObjGapList. addAll(int index, IList<? extends java.lang.Integer> list2)booleanIntObjGapList. addAll(IList<? extends java.lang.Integer> list2)booleanLongObjBigList. addAll(int index, IList<? extends java.lang.Long> list2)booleanLongObjBigList. addAll(IList<? extends java.lang.Long> list2)booleanLongObjGapList. addAll(int index, IList<? extends java.lang.Long> list2)booleanLongObjGapList. addAll(IList<? extends java.lang.Long> list2)booleanShortObjBigList. addAll(int index, IList<? extends java.lang.Short> list2)booleanShortObjBigList. addAll(IList<? extends java.lang.Short> list2)booleanShortObjGapList. addAll(int index, IList<? extends java.lang.Short> list2)booleanShortObjGapList. addAll(IList<? extends java.lang.Short> list2)protected voidBooleanObjBigList. doAssign(IList<java.lang.Boolean> that)protected voidBooleanObjGapList. doAssign(IList<java.lang.Boolean> that)protected voidByteObjBigList. doAssign(IList<java.lang.Byte> that)protected voidByteObjGapList. doAssign(IList<java.lang.Byte> that)protected voidCharObjBigList. doAssign(IList<java.lang.Character> that)protected voidCharObjGapList. doAssign(IList<java.lang.Character> that)protected voidDoubleObjBigList. doAssign(IList<java.lang.Double> that)protected voidDoubleObjGapList. doAssign(IList<java.lang.Double> that)protected voidFloatObjBigList. doAssign(IList<java.lang.Float> that)protected voidFloatObjGapList. doAssign(IList<java.lang.Float> that)protected voidIntObjBigList. doAssign(IList<java.lang.Integer> that)protected voidIntObjGapList. doAssign(IList<java.lang.Integer> that)protected voidLongObjBigList. doAssign(IList<java.lang.Long> that)protected voidLongObjGapList. doAssign(IList<java.lang.Long> that)protected voidShortObjBigList. doAssign(IList<java.lang.Short> that)protected voidShortObjGapList. doAssign(IList<java.lang.Short> that)protected voidBooleanObjBigList. doClone(IList<java.lang.Boolean> that)protected voidBooleanObjGapList. doClone(IList<java.lang.Boolean> that)protected voidByteObjBigList. doClone(IList<java.lang.Byte> that)protected voidByteObjGapList. doClone(IList<java.lang.Byte> that)protected voidCharObjBigList. doClone(IList<java.lang.Character> that)protected voidCharObjGapList. doClone(IList<java.lang.Character> that)protected voidDoubleObjBigList. doClone(IList<java.lang.Double> that)protected voidDoubleObjGapList. doClone(IList<java.lang.Double> that)protected voidFloatObjBigList. doClone(IList<java.lang.Float> that)protected voidFloatObjGapList. doClone(IList<java.lang.Float> that)protected voidIntObjBigList. doClone(IList<java.lang.Integer> that)protected voidIntObjGapList. doClone(IList<java.lang.Integer> that)protected voidLongObjBigList. doClone(IList<java.lang.Long> that)protected voidLongObjGapList. doClone(IList<java.lang.Long> that)protected voidShortObjBigList. doClone(IList<java.lang.Short> that)protected voidShortObjGapList. doClone(IList<java.lang.Short> that)booleanBooleanObjBigList. removeAll(IList<?> coll)booleanBooleanObjGapList. removeAll(IList<?> coll)booleanByteObjBigList. removeAll(IList<?> coll)booleanByteObjGapList. removeAll(IList<?> coll)booleanCharObjBigList. removeAll(IList<?> coll)booleanCharObjGapList. removeAll(IList<?> coll)booleanDoubleObjBigList. removeAll(IList<?> coll)booleanDoubleObjGapList. removeAll(IList<?> coll)booleanFloatObjBigList. removeAll(IList<?> coll)booleanFloatObjGapList. removeAll(IList<?> coll)booleanIntObjBigList. removeAll(IList<?> coll)booleanIntObjGapList. removeAll(IList<?> coll)booleanLongObjBigList. removeAll(IList<?> coll)booleanLongObjGapList. removeAll(IList<?> coll)booleanShortObjBigList. removeAll(IList<?> coll)booleanShortObjGapList. removeAll(IList<?> coll)booleanBooleanObjBigList. retainAll(IList<?> coll)booleanBooleanObjGapList. retainAll(IList<?> coll)booleanByteObjBigList. retainAll(IList<?> coll)booleanByteObjGapList. retainAll(IList<?> coll)booleanCharObjBigList. retainAll(IList<?> coll)booleanCharObjGapList. retainAll(IList<?> coll)booleanDoubleObjBigList. retainAll(IList<?> coll)booleanDoubleObjGapList. retainAll(IList<?> coll)booleanFloatObjBigList. retainAll(IList<?> coll)booleanFloatObjGapList. retainAll(IList<?> coll)booleanIntObjBigList. retainAll(IList<?> coll)booleanIntObjGapList. retainAll(IList<?> coll)booleanLongObjBigList. retainAll(IList<?> coll)booleanLongObjGapList. retainAll(IList<?> coll)booleanShortObjBigList. retainAll(IList<?> coll)booleanShortObjGapList. retainAll(IList<?> coll)voidBooleanObjBigList. setAll(int index, IList<? extends java.lang.Boolean> list2)voidBooleanObjGapList. setAll(int index, IList<? extends java.lang.Boolean> list2)voidByteObjBigList. setAll(int index, IList<? extends java.lang.Byte> list2)voidByteObjGapList. setAll(int index, IList<? extends java.lang.Byte> list2)voidCharObjBigList. setAll(int index, IList<? extends java.lang.Character> list2)voidCharObjGapList. setAll(int index, IList<? extends java.lang.Character> list2)voidDoubleObjBigList. setAll(int index, IList<? extends java.lang.Double> list2)voidDoubleObjGapList. setAll(int index, IList<? extends java.lang.Double> list2)voidFloatObjBigList. setAll(int index, IList<? extends java.lang.Float> list2)voidFloatObjGapList. setAll(int index, IList<? extends java.lang.Float> list2)voidIntObjBigList. setAll(int index, IList<? extends java.lang.Integer> list2)voidIntObjGapList. setAll(int index, IList<? extends java.lang.Integer> list2)voidLongObjBigList. setAll(int index, IList<? extends java.lang.Long> list2)voidLongObjGapList. setAll(int index, IList<? extends java.lang.Long> list2)voidShortObjBigList. setAll(int index, IList<? extends java.lang.Short> list2)voidShortObjGapList. setAll(int index, IList<? extends java.lang.Short> list2)
-