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