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 voidGapLists. add(java.lang.CharSequence str, CharGapList list, int start, int end)Add specified number of chars from CharSequence into CharGapList.static intGapLists. 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 classCharBigList.CharBlockA block stores in maximum blockSize number of elements.protected static classCharGapList.ReadOnlyListA read-only version ofCharGapList.Fields in org.magicwerk.brownies.collections.primitive declared as CharGapList Modifier and Type Field Description private static CharGapListCharGapList. EMPTYUnmodifiable empty instance(package private) CharGapListCharObjGapList. listMethods in org.magicwerk.brownies.collections.primitive that return CharGapList Modifier and Type Method Description CharGapListCharGapList. clone()CharGapListCharGapList. copy()static CharGapListCharGapList. create()static CharGapListCharGapList. create(char... elems)Create new list with specified elements.static CharGapListCharGapList. create(java.lang.String str)static CharGapListCharGapList. create(java.util.Collection<java.lang.Character> coll)Create new list with specified elements.CharGapListCharGapList. crop()CharGapListCharGapList. doCreate(int capacity)static CharGapListCharGapList. EMPTY()CharGapListCharGapList. getAll(char elem)CharGapListCharGapList. getAll(int index, int len)static CharGapListCharGapList. immutable(char... elems)Create new immutable list with specified elements.static CharGapListCharGapList. immutable(java.util.Collection<java.lang.Character> coll)Create new immutable list with specified elements.CharGapListCharGapList. immutableList()CharGapListCharGapList. unmodifiableList()Methods in org.magicwerk.brownies.collections.primitive with parameters of type CharGapList Modifier and Type Method Description protected static voidGapListPrimitives. add(java.lang.CharSequence str, CharGapList list, int start, int end)Add specified number of chars from CharSequence into CharGapList.protected static intGapListPrimitives. read(java.io.Reader reader, CharGapList list, int len)Read specified number of chars from Reader into CharGapList.protected static voidGapListPrimitives. 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.
-