Uses of Class
org.magicwerk.brownies.collections.primitive.CharGapList
-
Packages that use CharGapList 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 CharGapList in org.magicwerk.brownies.collections.helper
Methods in org.magicwerk.brownies.collections.helper with parameters of type CharGapList Modifier and Type Method Description static void
GapLists. add(java.lang.CharSequence str, CharGapList list, int start, int end)
Add specified number of chars from CharSequence into CharGapList.static int
GapLists. read(java.io.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.primitive Modifier and Type Class Description (package private) static class
CharBigList.CharBlock
A block stores in maximum blockSize number of elements.protected static class
CharGapList.ReadOnlyList
A read-only version ofCharGapList
.Fields in org.magicwerk.brownies.collections.primitive declared as CharGapList Modifier and Type Field Description private static CharGapList
CharGapList. EMPTY
Unmodifiable empty instance(package private) CharGapList
CharObjGapList. list
Methods in org.magicwerk.brownies.collections.primitive that return CharGapList Modifier and Type Method Description CharGapList
CharGapList. clone()
CharGapList
CharGapList. copy()
static CharGapList
CharGapList. create()
static CharGapList
CharGapList. create(char... elems)
Create new list with specified elements.static CharGapList
CharGapList. create(java.lang.String str)
static CharGapList
CharGapList. create(java.util.Collection<java.lang.Character> coll)
Create new list with specified elements.CharGapList
CharGapList. crop()
CharGapList
CharGapList. doCreate(int capacity)
static CharGapList
CharGapList. EMPTY()
CharGapList
CharGapList. getAll(char elem)
CharGapList
CharGapList. getAll(int index, int len)
static CharGapList
CharGapList. immutable(char... elems)
Create new immutable list with specified elements.static CharGapList
CharGapList. immutable(java.util.Collection<java.lang.Character> coll)
Create new immutable list with specified elements.CharGapList
CharGapList. immutableList()
CharGapList
CharGapList. unmodifiableList()
Methods in org.magicwerk.brownies.collections.primitive with parameters of type CharGapList Modifier and Type Method Description protected static void
GapListPrimitives. add(java.lang.CharSequence str, CharGapList list, int start, int end)
Add specified number of chars from CharSequence into CharGapList.protected static int
GapListPrimitives. read(java.io.Reader reader, CharGapList list, int len)
Read specified number of chars from Reader into CharGapList.protected static void
GapListPrimitives. write(java.io.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 CharGapList Constructor Description CharGapList(boolean copy, CharGapList that)
Constructor used internally, e.g.ReadOnlyList(CharGapList that)
Private constructor used internally.
-