Uses of Class
org.magicwerk.brownies.collections.primitive.ByteGapList
-
Packages that use ByteGapList Package Description 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 ByteGapList in org.magicwerk.brownies.collections.helper
Methods in org.magicwerk.brownies.collections.helper with parameters of type ByteGapList Modifier and Type Method Description static int
GapLists. read(java.io.InputStream istream, ByteGapList list, int len)
Read specified number of bytes from InputStream into ByteGapList. -
Uses of ByteGapList in org.magicwerk.brownies.collections.primitive
Subclasses of ByteGapList in org.magicwerk.brownies.collections.primitive Modifier and Type Class Description (package private) static class
ByteBigList.ByteBlock
A block stores in maximum blockSize number of elements.protected static class
ByteGapList.ReadOnlyList
A read-only version ofByteGapList
.Fields in org.magicwerk.brownies.collections.primitive declared as ByteGapList Modifier and Type Field Description private static ByteGapList
ByteGapList. EMPTY
Unmodifiable empty instance(package private) ByteGapList
ByteObjGapList. list
Methods in org.magicwerk.brownies.collections.primitive that return ByteGapList Modifier and Type Method Description ByteGapList
ByteGapList. clone()
ByteGapList
ByteGapList. copy()
static ByteGapList
ByteGapList. create()
static ByteGapList
ByteGapList. create(byte... elems)
Create new list with specified elements.static ByteGapList
ByteGapList. create(java.util.Collection<java.lang.Byte> coll)
Create new list with specified elements.ByteGapList
ByteGapList. crop()
ByteGapList
ByteGapList. doCreate(int capacity)
static ByteGapList
ByteGapList. EMPTY()
ByteGapList
ByteGapList. getAll(byte elem)
ByteGapList
ByteGapList. getAll(int index, int len)
static ByteGapList
ByteGapList. immutable(byte... elems)
Create new immutable list with specified elements.static ByteGapList
ByteGapList. immutable(java.util.Collection<java.lang.Byte> coll)
Create new immutable list with specified elements.ByteGapList
ByteGapList. immutableList()
ByteGapList
ByteGapList. unmodifiableList()
Methods in org.magicwerk.brownies.collections.primitive with parameters of type ByteGapList Modifier and Type Method Description protected static int
GapListPrimitives. read(java.io.InputStream istream, ByteGapList list, int len)
Read specified number of bytes from InputStream into ByteGapList.protected static void
GapListPrimitives. write(java.io.OutputStream ostream, ByteGapList list, int off, int len)
Write specified number of bytes from ByteGapList into OutputStream.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type ByteGapList Constructor Description ByteGapList(boolean copy, ByteGapList that)
Constructor used internally, e.g.ReadOnlyList(ByteGapList that)
Private constructor used internally.
-