Uses of Class
org.magicwerk.brownies.collections.primitive.ByteGapList
Packages that use ByteGapList
Package
Description
This packages contains helper classes for the package org.magicwerk.brownies.collections.
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 ByteGapListModifier and TypeMethodDescriptionstatic int
GapLists.read
(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.primitiveModifier and TypeClassDescription(package private) static class
A block stores in maximum blockSize number of elements.protected static class
A read-only version ofByteGapList
.Fields in org.magicwerk.brownies.collections.primitive declared as ByteGapListModifier and TypeFieldDescriptionprivate static final ByteGapList
ByteGapList.EMPTY
Unmodifiable empty instance(package private) ByteGapList
ByteObjGapList.list
Methods in org.magicwerk.brownies.collections.primitive that return ByteGapListModifier and TypeMethodDescriptionByteGapList.clone()
ByteGapList.copy()
static ByteGapList
ByteGapList.create()
static ByteGapList
ByteGapList.create
(byte... elems) Create new list with specified elements.static ByteGapList
ByteGapList.create
(Collection<Byte> coll) Create new list with specified elements.ByteGapList.crop()
ByteGapList.doCreate
(int capacity) static ByteGapList
ByteGapList.EMPTY()
ByteGapList.getAll
(byte elem) ByteGapList.getAll
(int index, int len) static ByteGapList
ByteGapList.immutable
(byte... elems) Create new immutable list with specified elements.static ByteGapList
ByteGapList.immutable
(Collection<Byte> coll) Create new immutable list with specified elements.ByteGapList.immutableList()
ByteGapList.unmodifiableList()
Methods in org.magicwerk.brownies.collections.primitive with parameters of type ByteGapListModifier and TypeMethodDescriptionprotected static int
GapListPrimitives.read
(InputStream istream, ByteGapList list, int len) Read specified number of bytes from InputStream into ByteGapList.protected static void
GapListPrimitives.write
(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 ByteGapListModifierConstructorDescriptionprotected
ByteGapList
(boolean copy, ByteGapList that) Constructor used internally, e.g.protected
ReadOnlyList
(ByteGapList that) Private constructor used internally.