Uses of Class
org.magicwerk.brownies.collections.GapList
-
Packages that use GapList 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 GapList in org.magicwerk.brownies.collections
Subclasses of GapList in org.magicwerk.brownies.collections Modifier and Type Class Description (package private) static class
BigList.Block<T>
A block stores in maximum blockSize number of elements.protected static class
GapList.ReadOnlyList<E>
A read-only version ofGapList
.(package private) static class
KeyCollectionImpl.KeyMapList<E>
List type used to store multiple elements.Fields in org.magicwerk.brownies.collections declared as GapList Modifier and Type Field Description private static GapList
GapList. EMPTY
Unmodifiable empty instance(package private) GapList<KeyCollectionImpl.BuilderImpl.KeyMapBuilder<E,java.lang.Object>>
KeyCollectionImpl.BuilderImpl. keyMapBuilders
Methods in org.magicwerk.brownies.collections that return GapList Modifier and Type Method Description GapList<E>
GapList. clone()
GapList<E>
GapList. copy()
static <E> GapList<E>
GapList. create()
Create new list.static <E> GapList<E>
GapList. create(E... elems)
Create new list with specified elements.static <E> GapList<E>
GapList. create(java.util.Collection<? extends E> coll)
Create new list with specified elements.GapList<E>
GapList. crop()
GapList<E>
GapList. doCreate(int capacity)
static <EE> GapList<EE>
GapList. EMPTY()
GapList<E>
GapList. getAll(int index, int len)
GapList<E>
GapList. getAll(E elem)
static <E> GapList<E>
GapList. immutable(E... elems)
Create new immutable list with specified elements.static <E> GapList<E>
GapList. immutable(java.util.Collection<? extends E> coll)
Create new immutable list with specified elements.GapList<E>
GapList. immutableList()
<R> GapList<R>
GapList. map(java.util.function.Function<E,R> mapper)
GapList<E>
KeyCollectionImpl. toList()
Returns all elements contained in this collection as list.GapList<E>
GapList. unmodifiableList()
Constructors in org.magicwerk.brownies.collections with parameters of type GapList Constructor Description GapList(boolean copy, GapList<E> that)
Constructor used internally, e.g.ReadOnlyList(GapList<E> that)
Private constructor used internally. -
Uses of GapList in org.magicwerk.brownies.collections.helper
Methods in org.magicwerk.brownies.collections.helper that return types with arguments of type GapList Modifier and Type Method Description static <T> java.util.stream.Collector<T,?,GapList<T>>
GapLists. toGapList()
Return collector which collects the elements into aGapList
. -
Uses of GapList in org.magicwerk.brownies.collections.primitive
Methods in org.magicwerk.brownies.collections.primitive that return GapList Modifier and Type Method Description GapList<java.lang.Boolean>
BooleanObjGapList. getAll(int index, int len)
GapList<java.lang.Byte>
ByteObjGapList. getAll(int index, int len)
GapList<java.lang.Character>
CharObjGapList. getAll(int index, int len)
GapList<java.lang.Double>
DoubleObjGapList. getAll(int index, int len)
GapList<java.lang.Float>
FloatObjGapList. getAll(int index, int len)
GapList<java.lang.Integer>
IntObjGapList. getAll(int index, int len)
GapList<java.lang.Long>
LongObjGapList. getAll(int index, int len)
GapList<java.lang.Short>
ShortObjGapList. getAll(int index, int len)
<R> GapList<R>
BooleanGapList. map(java.util.function.Function<java.lang.Boolean,R> mapper)
<R> GapList<R>
ByteGapList. map(java.util.function.Function<java.lang.Byte,R> mapper)
<R> GapList<R>
CharGapList. map(java.util.function.Function<java.lang.Character,R> mapper)
<R> GapList<R>
DoubleGapList. map(java.util.function.Function<java.lang.Double,R> mapper)
<R> GapList<R>
FloatGapList. map(java.util.function.Function<java.lang.Float,R> mapper)
<R> GapList<R>
IntGapList. map(java.util.function.Function<java.lang.Integer,R> mapper)
<R> GapList<R>
LongGapList. map(java.util.function.Function<java.lang.Long,R> mapper)
<R> GapList<R>
ShortGapList. map(java.util.function.Function<java.lang.Short,R> mapper)
Methods in org.magicwerk.brownies.collections.primitive with parameters of type GapList Modifier and Type Method Description (package private) static boolean[]
BooleanObjGapList. toPrimitive(GapList<? extends java.lang.Boolean> list2)
(package private) static byte[]
ByteObjGapList. toPrimitive(GapList<? extends java.lang.Byte> list2)
(package private) static char[]
CharObjGapList. toPrimitive(GapList<? extends java.lang.Character> list2)
(package private) static double[]
DoubleObjGapList. toPrimitive(GapList<? extends java.lang.Double> list2)
(package private) static float[]
FloatObjGapList. toPrimitive(GapList<? extends java.lang.Float> list2)
(package private) static int[]
IntObjGapList. toPrimitive(GapList<? extends java.lang.Integer> list2)
(package private) static long[]
LongObjGapList. toPrimitive(GapList<? extends java.lang.Long> list2)
(package private) static short[]
ShortObjGapList. toPrimitive(GapList<? extends java.lang.Short> list2)
-