Package it.unimi.dsi.fastutil.booleans
Class BooleanLists.SynchronizedRandomAccessList
- java.lang.Object
-
- it.unimi.dsi.fastutil.booleans.BooleanCollections.SynchronizedCollection
-
- it.unimi.dsi.fastutil.booleans.BooleanLists.SynchronizedList
-
- it.unimi.dsi.fastutil.booleans.BooleanLists.SynchronizedRandomAccessList
-
- 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.SynchronizedRandomAccessList extends BooleanLists.SynchronizedList implements java.util.RandomAccess, java.io.Serializable
A synchronized wrapper class for random-access lists.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanList
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 inherited from class it.unimi.dsi.fastutil.booleans.BooleanLists.SynchronizedList
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.SynchronizedCollection
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:BooleanList
Returns 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:
subList
in interfaceBooleanList
- Specified by:
subList
in interfacejava.util.List<java.lang.Boolean>
- Overrides:
subList
in classBooleanLists.SynchronizedList
- See Also:
List.subList(int,int)
-
-