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 voidGapLists.add(CharSequence str, CharGapList list, int start, int end) Add specified number of chars from CharSequence into CharGapList.static intGapLists.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 classA block stores in maximum blockSize number of elements.protected static classA read-only version ofCharGapList.Fields in org.magicwerk.brownies.collections.primitive declared as CharGapListModifier and TypeFieldDescriptionprivate static final CharGapListCharGapList.EMPTYUnmodifiable empty instance(package private) CharGapListCharObjGapList.listMethods in org.magicwerk.brownies.collections.primitive that return CharGapListModifier and TypeMethodDescriptionCharGapList.clone()CharGapList.copy()static CharGapListCharGapList.create()static CharGapListCharGapList.create(char... elems) Create new list with specified elements.static CharGapListstatic CharGapListCharGapList.create(Collection<Character> coll) Create new list with specified elements.CharGapList.crop()CharGapList.doCreate(int capacity) static CharGapListCharGapList.EMPTY()CharGapList.getAll(char elem) CharGapList.getAll(int index, int len) static CharGapListCharGapList.immutable(char... elems) Create new immutable list with specified elements.static CharGapListCharGapList.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 voidGapListPrimitives.add(CharSequence str, CharGapList list, int start, int end) Add specified number of chars from CharSequence into CharGapList.protected static intGapListPrimitives.read(Reader reader, CharGapList list, int len) Read specified number of chars from Reader into CharGapList.protected static voidGapListPrimitives.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 CharGapListModifierConstructorDescriptionprotectedCharGapList(boolean copy, CharGapList that) Constructor used internally, e.g.protectedReadOnlyList(CharGapList that) Private constructor used internally.