Uses of Interface
org.codelibs.jhighlight.fastutil.chars.CharList
-
Packages that use CharList Package Description org.codelibs.jhighlight.fastutil.chars -
-
Uses of CharList in org.codelibs.jhighlight.fastutil.chars
Classes in org.codelibs.jhighlight.fastutil.chars that implement CharList Modifier and Type Class Description classAbstractCharListAn abstract class providing basic methods for lists implementing a type-specific list interface.static classAbstractCharList.CharSubListclassCharArrayListA type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.Fields in org.codelibs.jhighlight.fastutil.chars declared as CharList Modifier and Type Field Description protected CharListAbstractCharList.CharSubList. lThe list this sublist restricts.Methods in org.codelibs.jhighlight.fastutil.chars that return CharList Modifier and Type Method Description CharListAbstractCharList. charSubList(int from, int to)Deprecated.CharListCharList. charSubList(int from, int to)Deprecated.As offastutil5, replaced bysubList(int,int).static CharListCharIterators. pour(CharIterator i)Pours an iterator, returning a type-specific list.static CharListCharIterators. pour(CharIterator i, int max)Pours an iterator, returning a type-specific list, with a limit on the number of elements.CharListAbstractCharList.CharSubList. subList(int from, int to)CharListAbstractCharList. subList(int from, int to)CharListCharList. subList(int from, int to)Returns a type-specific view of the portion of this list from the indexfrom, inclusive, to the indexto, exclusive.Methods in org.codelibs.jhighlight.fastutil.chars with parameters of type CharList Modifier and Type Method Description booleanAbstractCharList. addAll(int index, CharList l)Delegates to a more generic method.booleanAbstractCharList. addAll(CharList l)booleanAbstractCharList.CharSubList. addAll(int index, CharList l)booleanCharArrayList. addAll(int index, CharList l)booleanCharList. addAll(int index, CharList c)booleanCharList. addAll(CharList c)Constructors in org.codelibs.jhighlight.fastutil.chars with parameters of type CharList Constructor Description CharArrayList(CharList l)Creates a new array list and fills it with a given type-specific list.CharSubList(CharList l, int from, int to)
-