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,java.io.Serializable,java.lang.Comparable<java.util.List<? extends java.lang.Boolean>>,java.lang.Iterable<java.lang.Boolean>,java.util.Collection<java.lang.Boolean>,java.util.List<java.lang.Boolean>,java.util.RandomAccess
- Enclosing class:
- BooleanLists
public static class BooleanLists.UnmodifiableRandomAccessList extends BooleanLists.UnmodifiableList implements java.util.RandomAccess, java.io.Serializable
An unmodifiable wrapper class for random-access lists.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods 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, unstableSort
-
Methods 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, toString
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
addAll, contains, containsAll, rem, removeAll, retainAll, toArray, toBooleanArray, toBooleanArray
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanIterable
forEach, forEach
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanList
add, add, contains, remove
-
-
-
-
Method Detail
-
subList
public BooleanList subList(int from, int to)
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 interfacejava.util.List<java.lang.Boolean>- Overrides:
subListin classBooleanLists.UnmodifiableList- See Also:
List.subList(int,int)
-
-