Package it.unimi.dsi.fastutil.chars
Class AbstractCharList.CharRandomAccessSubList
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Character>
-
- it.unimi.dsi.fastutil.chars.AbstractCharCollection
-
- it.unimi.dsi.fastutil.chars.AbstractCharList
-
- it.unimi.dsi.fastutil.chars.AbstractCharList.CharSubList
-
- it.unimi.dsi.fastutil.chars.AbstractCharList.CharRandomAccessSubList
-
- All Implemented Interfaces:
CharCollection,CharIterable,CharList,CharStack,Stack<java.lang.Character>,java.io.Serializable,java.lang.Comparable<java.util.List<? extends java.lang.Character>>,java.lang.Iterable<java.lang.Character>,java.util.Collection<java.lang.Character>,java.util.List<java.lang.Character>,java.util.RandomAccess
- Enclosing class:
- AbstractCharList
public static class AbstractCharList.CharRandomAccessSubList extends AbstractCharList.CharSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.chars.AbstractCharList
AbstractCharList.CharRandomAccessSubList, AbstractCharList.CharSubList
-
-
Constructor Summary
Constructors Constructor Description CharRandomAccessSubList(CharList l, int from, int to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CharListsubList(int from, int to)Returns a type-specific view of the portion of this list from the indexfrom, inclusive, to the indexto, exclusive.-
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharList.CharSubList
add, add, addAll, addAll, addAll, addElements, getChar, getElements, listIterator, rem, removeChar, removeElements, set, setElements, size, spliterator
-
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharList
addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, hashCode, indexOf, iterator, lastIndexOf, listIterator, peekChar, popChar, push, size, toArray, toCharArray, topChar, toString
-
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toCharArray
-
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharCollection
containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toCharArray
-
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEach
-
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharList
add, add, addAll, contains, get, indexOf, lastIndexOf, remove, remove, replaceAll, replaceAll, replaceAll, set, setElements, setElements, sort, sort, unstableSort, unstableSort
-
-
-
-
Constructor Detail
-
CharRandomAccessSubList
public CharRandomAccessSubList(CharList l, int from, int to)
-
-
Method Detail
-
subList
public CharList subList(int from, int to)
Description copied from interface:CharListReturns a type-specific view of the portion of this list from the indexfrom, inclusive, to the indexto, exclusive.- Specified by:
subListin interfaceCharList- Specified by:
subListin interfacejava.util.List<java.lang.Character>- Overrides:
subListin classAbstractCharList.CharSubList- See Also:
List.subList(int,int)
-
-