Uses of Class
org.magicwerk.brownies.collections.primitive.CharGapList
Packages that use CharGapList
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 CharGapList in org.magicwerk.brownies.collections.helper
Methods in org.magicwerk.brownies.collections.helper with parameters of type CharGapListModifier and TypeMethodDescriptionstatic void
GapLists.add
(CharSequence str, CharGapList list, int start, int end) Add specified number of chars from CharSequence into CharGapList.static int
GapLists.read
(Reader reader, CharGapList list, int len) Read specified number of chars from Reader into CharGapList. -
Uses of CharGapList in org.magicwerk.brownies.collections.primitive
Subclasses of CharGapList 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 ofCharGapList
.Fields in org.magicwerk.brownies.collections.primitive declared as CharGapListModifier and TypeFieldDescriptionprivate static final CharGapList
CharGapList.EMPTY
Unmodifiable empty instance(package private) CharGapList
CharObjGapList.list
Methods in org.magicwerk.brownies.collections.primitive that return CharGapListModifier and TypeMethodDescriptionCharGapList.clone()
CharGapList.copy()
static CharGapList
CharGapList.create()
static CharGapList
CharGapList.create
(char... elems) Create new list with specified elements.static CharGapList
static CharGapList
CharGapList.create
(Collection<Character> coll) Create new list with specified elements.CharGapList.crop()
CharGapList.doCreate
(int capacity) static CharGapList
CharGapList.EMPTY()
CharGapList.getAll
(char elem) CharGapList.getAll
(int index, int len) static CharGapList
CharGapList.immutable
(char... elems) Create new immutable list with specified elements.static CharGapList
CharGapList.immutable
(Collection<Character> coll) Create new immutable list with specified elements.CharGapList.immutableList()
CharGapList.unmodifiableList()
Methods in org.magicwerk.brownies.collections.primitive with parameters of type CharGapListModifier and TypeMethodDescriptionprotected static void
GapListPrimitives.add
(CharSequence str, CharGapList list, int start, int end) Add specified number of chars from CharSequence into CharGapList.protected static int
GapListPrimitives.read
(Reader reader, CharGapList list, int len) Read specified number of chars from Reader into CharGapList.protected static void
GapListPrimitives.write
(Writer writer, CharGapList list, int off, int len) Write specified number of chars from CharGapList into Writer.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type CharGapListModifierConstructorDescriptionprotected
CharGapList
(boolean copy, CharGapList that) Constructor used internally, e.g.protected
ReadOnlyList
(CharGapList that) Private constructor used internally.