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