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.ImmutableCharGapListAn immutable version of a CharGapList.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. 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)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.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type CharGapList Constructor Description CharGapList(boolean copy, CharGapList that)Constructor used internally, e.g.ImmutableCharGapList(CharGapList that)Private constructor used internally.
-