Package it.unimi.dsi.fastutil.booleans
Class BooleanLists.UnmodifiableRandomAccessList
java.lang.Object
it.unimi.dsi.fastutil.booleans.BooleanCollections.UnmodifiableCollection
it.unimi.dsi.fastutil.booleans.BooleanLists.UnmodifiableList
it.unimi.dsi.fastutil.booleans.BooleanLists.UnmodifiableRandomAccessList
- All Implemented Interfaces:
BooleanCollection,BooleanIterable,BooleanList,Serializable,Comparable<List<? extends Boolean>>,Iterable<Boolean>,Collection<Boolean>,List<Boolean>,RandomAccess
- Enclosing class:
- BooleanLists
public static class BooleanLists.UnmodifiableRandomAccessList extends BooleanLists.UnmodifiableList implements RandomAccess, Serializable
An unmodifiable wrapper class for random-access lists.
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description BooleanListsubList(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.booleans.BooleanLists.UnmodifiableList
add, add, addAll, addAll, addAll, addAll, addElements, addElements, compareTo, equals, get, getBoolean, getElements, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, remove, removeBoolean, removeElements, set, set, setElements, setElements, setElements, size, sort, sort, unstableSort, unstableSortMethods inherited from class it.unimi.dsi.fastutil.booleans.BooleanCollections.UnmodifiableCollection
add, add, addAll, addAll, clear, contains, contains, containsAll, containsAll, isEmpty, rem, remove, removeAll, removeAll, retainAll, retainAll, size, toArray, toArray, toArray, toBooleanArray, toBooleanArray, toStringMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
addAll, contains, containsAll, rem, removeAll, retainAll, toArray, toBooleanArray, toBooleanArrayMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanList
add, add, contains, removeMethods inherited from interface java.util.List
addAll, clear, containsAll, isEmpty, removeAll, replaceAll, retainAll, size, spliterator, toArray, toArray
-
Method Details
-
subList
Description copied from interface:BooleanListReturns a type-specific view of the portion of this list from the indexfrom, inclusive, to the indexto, exclusive.Note that this specification strengthens the one given in
List.subList(int,int).- Specified by:
subListin interfaceBooleanList- Specified by:
subListin interfaceList<Boolean>- Overrides:
subListin classBooleanLists.UnmodifiableList- See Also:
List.subList(int,int)
-