Package it.unimi.dsi.fastutil.objects
Class ReferenceSets.SynchronizedSet<K>
- java.lang.Object
-
- it.unimi.dsi.fastutil.objects.ReferenceSets.SynchronizedSet<K>
-
- All Implemented Interfaces:
ObjectIterable<K>
,ReferenceCollection<K>
,ReferenceSet<K>
,java.io.Serializable
,java.lang.Iterable<K>
,java.util.Collection<K>
,java.util.Set<K>
- Direct Known Subclasses:
ReferenceSortedSets.SynchronizedSortedSet
- Enclosing class:
- ReferenceSets
public static class ReferenceSets.SynchronizedSet<K> extends java.lang.Object implements ReferenceSet<K>, java.io.Serializable
A synchronized wrapper class for sets.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(K k)
boolean
addAll(java.util.Collection<? extends K> c)
void
clear()
boolean
contains(java.lang.Object k)
boolean
containsAll(java.util.Collection<?> c)
boolean
equals(java.lang.Object o)
void
forEach(java.util.function.Consumer<? super K> action)
int
hashCode()
boolean
isEmpty()
ObjectIterator<K>
iterator()
Returns a type-specific iterator on the elements of this collection.java.util.stream.Stream<K>
parallelStream()
boolean
remove(java.lang.Object k)
boolean
removeAll(java.util.Collection<?> c)
boolean
removeIf(java.util.function.Predicate<? super K> filter)
boolean
retainAll(java.util.Collection<?> c)
int
size()
ObjectSpliterator<K>
spliterator()
Returns a type-specific spliterator on the elements of this collection.java.util.stream.Stream<K>
stream()
java.lang.Object[]
toArray()
<T> T[]
toArray(T[] a)
java.lang.String
toString()
-
Methods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceSet
iterator, spliterator
-
-
-
-
Method Detail
-
remove
public boolean remove(java.lang.Object k)
-
add
public boolean add(K k)
- Specified by:
add
in interfacejava.util.Collection<K>
-
contains
public boolean contains(java.lang.Object k)
- Specified by:
contains
in interfacejava.util.Collection<K>
-
size
public int size()
- Specified by:
size
in interfacejava.util.Collection<K>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfacejava.util.Collection<K>
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray
in interfacejava.util.Collection<K>
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray
in interfacejava.util.Collection<K>
-
iterator
public ObjectIterator<K> iterator()
Description copied from interface:ReferenceCollection
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfacejava.util.Collection<K>
- Specified by:
iterator
in interfacejava.lang.Iterable<K>
- Specified by:
iterator
in interfaceObjectIterable<K>
- Specified by:
iterator
in interfaceReferenceCollection<K>
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
spliterator
public ObjectSpliterator<K> spliterator()
Description copied from interface:ReferenceCollection
Returns 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:
spliterator
in interfacejava.util.Collection<K>
- Specified by:
spliterator
in interfacejava.lang.Iterable<K>
- Specified by:
spliterator
in interfaceObjectIterable<K>
- Specified by:
spliterator
in interfaceReferenceCollection<K>
- Returns:
- a type-specific spliterator on the elements of this collection.
-
stream
public java.util.stream.Stream<K> stream()
- Specified by:
stream
in interfacejava.util.Collection<K>
-
parallelStream
public java.util.stream.Stream<K> parallelStream()
- Specified by:
parallelStream
in interfacejava.util.Collection<K>
-
forEach
public void forEach(java.util.function.Consumer<? super K> action)
- Specified by:
forEach
in interfacejava.lang.Iterable<K>
-
addAll
public boolean addAll(java.util.Collection<? extends K> c)
- Specified by:
addAll
in interfacejava.util.Collection<K>
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
- Specified by:
containsAll
in interfacejava.util.Collection<K>
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
removeAll
in interfacejava.util.Collection<K>
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
retainAll
in interfacejava.util.Collection<K>
-
removeIf
public boolean removeIf(java.util.function.Predicate<? super K> filter)
- Specified by:
removeIf
in interfacejava.util.Collection<K>
-
clear
public void clear()
- Specified by:
clear
in interfacejava.util.Collection<K>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfacejava.util.Collection<K>
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Specified by:
equals
in interfacejava.util.Collection<K>
- Overrides:
equals
in classjava.lang.Object
-
-