Uses of Class
org.magicwerk.brownies.collections.BigList
-
Packages that use BigList 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 BigList in org.magicwerk.brownies.collections
Subclasses of BigList in org.magicwerk.brownies.collections Modifier and Type Class Description protected static class
BigList.ReadOnlyBigList<E>
A read-only version ofKey1List
.Fields in org.magicwerk.brownies.collections declared as BigList Modifier and Type Field Description private static BigList
BigList. EMPTY
Unmodifiable empty instanceMethods in org.magicwerk.brownies.collections that return BigList Modifier and Type Method Description BigList<E>
BigList. clone()
Returns a shallow copy of this list.BigList<E>
BigList. copy()
Returns a shallow copy of this list.static <E> BigList<E>
BigList. create()
Create new list.static <E> BigList<E>
BigList. create(E... elems)
Create new list with specified elements.static <E> BigList<E>
BigList. create(java.util.Collection<? extends E> coll)
Create new list with specified elements.BigList<E>
BigList. crop()
static <EE> BigList<EE>
BigList. EMPTY()
BigList<E>
BigList. immutableList()
BigList<E>
BigList. unmodifiableList()
Constructors in org.magicwerk.brownies.collections with parameters of type BigList Constructor Description BigList(boolean copy, BigList<E> that)
Constructor used internally, e.g.ReadOnlyBigList(BigList<E> that)
Private constructor used internally. -
Uses of BigList in org.magicwerk.brownies.collections.helper
Methods in org.magicwerk.brownies.collections.helper that return types with arguments of type BigList Modifier and Type Method Description static <T> java.util.stream.Collector<T,?,BigList<T>>
GapLists. toBigList()
Return collector which collects the elements into aBigList
. -
Uses of BigList in org.magicwerk.brownies.collections.primitive
Methods in org.magicwerk.brownies.collections.primitive that return BigList Modifier and Type Method Description BigList<java.lang.Boolean>
BooleanObjBigList. getAll(int index, int len)
BigList<java.lang.Byte>
ByteObjBigList. getAll(int index, int len)
BigList<java.lang.Character>
CharObjBigList. getAll(int index, int len)
BigList<java.lang.Double>
DoubleObjBigList. getAll(int index, int len)
BigList<java.lang.Float>
FloatObjBigList. getAll(int index, int len)
BigList<java.lang.Integer>
IntObjBigList. getAll(int index, int len)
BigList<java.lang.Long>
LongObjBigList. getAll(int index, int len)
BigList<java.lang.Short>
ShortObjBigList. getAll(int index, int len)
Methods in org.magicwerk.brownies.collections.primitive with parameters of type BigList Modifier and Type Method Description (package private) static boolean[]
BooleanObjBigList. toPrimitive(BigList<? extends java.lang.Boolean> list2)
(package private) static byte[]
ByteObjBigList. toPrimitive(BigList<? extends java.lang.Byte> list2)
(package private) static char[]
CharObjBigList. toPrimitive(BigList<? extends java.lang.Character> list2)
(package private) static double[]
DoubleObjBigList. toPrimitive(BigList<? extends java.lang.Double> list2)
(package private) static float[]
FloatObjBigList. toPrimitive(BigList<? extends java.lang.Float> list2)
(package private) static int[]
IntObjBigList. toPrimitive(BigList<? extends java.lang.Integer> list2)
(package private) static long[]
LongObjBigList. toPrimitive(BigList<? extends java.lang.Long> list2)
(package private) static short[]
ShortObjBigList. toPrimitive(BigList<? extends java.lang.Short> list2)
-