Package it.unimi.dsi.fastutil.objects
Class ObjectLists.SynchronizedRandomAccessList<K>
- java.lang.Object
-
- it.unimi.dsi.fastutil.objects.ObjectLists.SynchronizedList<K>
-
- it.unimi.dsi.fastutil.objects.ObjectLists.SynchronizedRandomAccessList<K>
-
- All Implemented Interfaces:
ObjectCollection<K>,ObjectIterable<K>,ObjectList<K>,java.io.Serializable,java.lang.Comparable<java.util.List<? extends K>>,java.lang.Iterable<K>,java.util.Collection<K>,java.util.List<K>,java.util.RandomAccess
- Enclosing class:
- ObjectLists
public static class ObjectLists.SynchronizedRandomAccessList<K> extends ObjectLists.SynchronizedList<K> 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 booleanadd(K k)booleanaddAll(java.util.Collection<? extends K> c)voidclear()booleancontains(java.lang.Object k)booleancontainsAll(java.util.Collection<?> c)voidforEach(java.util.function.Consumer<? super K> action)booleanisEmpty()java.util.stream.Stream<K>parallelStream()booleanremove(java.lang.Object k)booleanremoveAll(java.util.Collection<?> c)booleanretainAll(java.util.Collection<?> c)intsize()ObjectSpliterator<K>spliterator()Returns a type-specific spliterator on the elements of this collection.java.util.stream.Stream<K>stream()ObjectList<K>subList(int from, int to)Returns a type-specific view of the portion of this list from the indexfrom, inclusive, to the indexto, exclusive.java.lang.Object[]toArray()<T> T[]toArray(T[] a)java.lang.StringtoString()-
Methods inherited from class it.unimi.dsi.fastutil.objects.ObjectLists.SynchronizedList
add, addAll, addElements, addElements, compareTo, equals, get, getElements, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeElements, removeIf, replaceAll, set, setElements, setElements, setElements, size, sort, unstableSort
-
Methods inherited from interface java.util.List
add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.objects.ObjectList
addAll, addAll, spliterator
-
-
-
-
Method Detail
-
subList
public ObjectList<K> subList(int from, int to)
Description copied from interface:ObjectListReturns a type-specific view of the portion of this list from the indexfrom, inclusive, to the indexto, exclusive.- Specified by:
subListin interfacejava.util.List<K>- Specified by:
subListin interfaceObjectList<K>- Overrides:
subListin classObjectLists.SynchronizedList<K>- See Also:
List.subList(int,int)
-
add
public boolean add(K k)
- Specified by:
addin interfacejava.util.Collection<K>
-
contains
public boolean contains(java.lang.Object k)
- Specified by:
containsin interfacejava.util.Collection<K>
-
remove
public boolean remove(java.lang.Object k)
- Specified by:
removein interfacejava.util.Collection<K>
-
size
public int size()
- Specified by:
sizein interfacejava.util.Collection<K>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfacejava.util.Collection<K>
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArrayin interfacejava.util.Collection<K>
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArrayin interfacejava.util.Collection<K>
-
spliterator
public ObjectSpliterator<K> spliterator()
Description copied from interface:ObjectCollectionReturns a type-specific spliterator on the elements of this collection.See
Collection.spliterator()for more documentation on the requirements of the returned spliterator.- Specified by:
spliteratorin interfacejava.util.Collection<K>- Specified by:
spliteratorin interfacejava.lang.Iterable<K>- Specified by:
spliteratorin interfaceObjectCollection<K>- Specified by:
spliteratorin interfaceObjectIterable<K>- Returns:
- a type-specific spliterator on the elements of this collection.
-
stream
public java.util.stream.Stream<K> stream()
- Specified by:
streamin interfacejava.util.Collection<K>
-
parallelStream
public java.util.stream.Stream<K> parallelStream()
- Specified by:
parallelStreamin interfacejava.util.Collection<K>
-
forEach
public void forEach(java.util.function.Consumer<? super K> action)
- Specified by:
forEachin interfacejava.lang.Iterable<K>
-
addAll
public boolean addAll(java.util.Collection<? extends K> c)
- Specified by:
addAllin interfacejava.util.Collection<K>
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
- Specified by:
containsAllin interfacejava.util.Collection<K>
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
removeAllin interfacejava.util.Collection<K>
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
retainAllin interfacejava.util.Collection<K>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<K>
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-