Uses of Class
org.magicwerk.brownies.collections.primitive.LongGapList
-
Packages that use LongGapList Package Description org.magicwerk.brownies.collections.primitive This packages contains implementations of GapList and BigList for primitive data types. -
-
Uses of LongGapList in org.magicwerk.brownies.collections.primitive
Subclasses of LongGapList in org.magicwerk.brownies.collections.primitive Modifier and Type Class Description (package private) static class
LongBigList.LongBlock
A block stores in maximum blockSize number of elements.protected static class
LongGapList.ReadOnlyList
A read-only version ofLongGapList
.Fields in org.magicwerk.brownies.collections.primitive declared as LongGapList Modifier and Type Field Description private static LongGapList
LongGapList. EMPTY
Unmodifiable empty instance(package private) LongGapList
LongObjGapList. list
Methods in org.magicwerk.brownies.collections.primitive that return LongGapList Modifier and Type Method Description LongGapList
LongGapList. clone()
LongGapList
LongGapList. copy()
static LongGapList
LongGapList. create()
static LongGapList
LongGapList. create(long... elems)
Create new list with specified elements.static LongGapList
LongGapList. create(java.util.Collection<java.lang.Long> coll)
Create new list with specified elements.LongGapList
LongGapList. crop()
LongGapList
LongGapList. doCreate(int capacity)
static LongGapList
LongGapList. EMPTY()
LongGapList
LongGapList. getAll(int index, int len)
LongGapList
LongGapList. getAll(long elem)
static LongGapList
LongGapList. immutable(long... elems)
Create new immutable list with specified elements.static LongGapList
LongGapList. immutable(java.util.Collection<java.lang.Long> coll)
Create new immutable list with specified elements.LongGapList
LongGapList. immutableList()
LongGapList
LongGapList. unmodifiableList()
Constructors in org.magicwerk.brownies.collections.primitive with parameters of type LongGapList Constructor Description LongGapList(boolean copy, LongGapList that)
Constructor used internally, e.g.ReadOnlyList(LongGapList that)
Private constructor used internally.
-