Class SynchronizedByteSet
java.lang.Object
org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedByteCollection
org.eclipse.collections.impl.set.mutable.primitive.SynchronizedByteSet
- All Implemented Interfaces:
Serializable
,ByteIterable
,MutableByteCollection
,PrimitiveIterable
,ByteSet
,MutableByteSet
public class SynchronizedByteSet extends AbstractSynchronizedByteCollection implements MutableByteSet
A synchronized view of a
MutableByteSet
. It is imperative that the user manually synchronize on the collection when iterating over it using the
ByteIterator
, as per Collections.synchronizedCollection(Collection)
.
This file was automatically generated from template file synchronizedPrimitiveSet.stg.
- Since:
- 3.1.
- See Also:
MutableByteSet.asSynchronized()
,MutableSet.asSynchronized()
, Serialized Form
-
Constructor Summary
Constructors Constructor Description SynchronizedByteSet(MutableByteSet set)
SynchronizedByteSet(MutableByteSet set, Object newLock)
-
Method Summary
Modifier and Type Method Description LazyByteIterable
asLazy()
Returns a LazyByteIterable adapter wrapping the source ByteIterable.MutableByteSet
asSynchronized()
MutableByteSet
asUnmodifiable()
<V> MutableSet<V>
collect(ByteToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.boolean
equals(Object otherSet)
Follows the same general contract asSet.equals(Object)
.ByteSet
freeze()
Returns a frozen copy of this set.int
hashCode()
Follows the same general contract asSet.hashCode()
.MutableByteSet
newEmpty()
Creates a new empty mutable version of the same Set type.static SynchronizedByteSet
of(MutableByteSet set)
This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet.static SynchronizedByteSet
of(MutableByteSet set, Object lock)
This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet.MutableByteSet
reject(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.MutableByteSet
select(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that return true for the specified predicate.ImmutableByteSet
toImmutable()
Returns an immutable copy of this set.SynchronizedByteSet
with(byte element)
SynchronizedByteSet
withAll(ByteIterable elements)
SynchronizedByteSet
without(byte element)
SynchronizedByteSet
withoutAll(ByteIterable elements)
Methods inherited from class org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedByteCollection
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, appendString, average, byteIterator, chunk, clear, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, isEmpty, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, notEmpty, reduce, reduceIfEmpty, remove, removeAll, removeAll, removeIf, retainAll, retainAll, size, sum, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toString
Methods inherited from interface org.eclipse.collections.api.ByteIterable
allSatisfy, anySatisfy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableByteCollection
add, addAll, addAll, byteIterator, clear, remove, removeAll, removeAll, removeIf, retainAll, retainAll
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
Constructor Details
-
Method Details
-
of
This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet. -
of
This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet. Additionally, a developer specifies which lock to use with the collection. -
without
- Specified by:
without
in interfaceMutableByteCollection
- Specified by:
without
in interfaceMutableByteSet
- Overrides:
without
in classAbstractSynchronizedByteCollection
-
with
- Specified by:
with
in interfaceMutableByteCollection
- Specified by:
with
in interfaceMutableByteSet
- Overrides:
with
in classAbstractSynchronizedByteCollection
-
withAll
- Specified by:
withAll
in interfaceMutableByteCollection
- Specified by:
withAll
in interfaceMutableByteSet
- Overrides:
withAll
in classAbstractSynchronizedByteCollection
-
withoutAll
- Specified by:
withoutAll
in interfaceMutableByteCollection
- Specified by:
withoutAll
in interfaceMutableByteSet
- Overrides:
withoutAll
in classAbstractSynchronizedByteCollection
-
select
Description copied from interface:ByteIterable
Returns a new ByteIterable with all of the elements in the ByteIterable that return true for the specified predicate.- Specified by:
select
in interfaceByteIterable
- Specified by:
select
in interfaceByteSet
- Specified by:
select
in interfaceMutableByteCollection
- Specified by:
select
in interfaceMutableByteSet
- Overrides:
select
in classAbstractSynchronizedByteCollection
-
reject
Description copied from interface:ByteIterable
Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.- Specified by:
reject
in interfaceByteIterable
- Specified by:
reject
in interfaceByteSet
- Specified by:
reject
in interfaceMutableByteCollection
- Specified by:
reject
in interfaceMutableByteSet
- Overrides:
reject
in classAbstractSynchronizedByteCollection
-
collect
Description copied from interface:ByteIterable
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collect
in interfaceByteIterable
- Specified by:
collect
in interfaceByteSet
- Specified by:
collect
in interfaceMutableByteCollection
- Specified by:
collect
in interfaceMutableByteSet
- Overrides:
collect
in classAbstractSynchronizedByteCollection
-
equals
Description copied from interface:ByteSet
Follows the same general contract asSet.equals(Object)
. -
hashCode
public int hashCode()Description copied from interface:ByteSet
Follows the same general contract asSet.hashCode()
. -
asLazy
Description copied from interface:ByteIterable
Returns a LazyByteIterable adapter wrapping the source ByteIterable.- Specified by:
asLazy
in interfaceByteIterable
- Overrides:
asLazy
in classAbstractSynchronizedByteCollection
-
asUnmodifiable
- Specified by:
asUnmodifiable
in interfaceMutableByteCollection
- Specified by:
asUnmodifiable
in interfaceMutableByteSet
- Overrides:
asUnmodifiable
in classAbstractSynchronizedByteCollection
-
asSynchronized
- Specified by:
asSynchronized
in interfaceMutableByteCollection
- Specified by:
asSynchronized
in interfaceMutableByteSet
- Overrides:
asSynchronized
in classAbstractSynchronizedByteCollection
-
freeze
Description copied from interface:MutableByteSet
Returns a frozen copy of this set. A frozen copy is the same thing as an immutable copy without safe-publish guarantees.- Specified by:
freeze
in interfaceByteSet
- Specified by:
freeze
in interfaceMutableByteSet
-
toImmutable
Description copied from interface:MutableByteSet
Returns an immutable copy of this set.- Specified by:
toImmutable
in interfaceByteSet
- Specified by:
toImmutable
in interfaceMutableByteCollection
- Specified by:
toImmutable
in interfaceMutableByteSet
- Overrides:
toImmutable
in classAbstractSynchronizedByteCollection
-
newEmpty
Description copied from interface:MutableByteSet
Creates a new empty mutable version of the same Set type.- Specified by:
newEmpty
in interfaceMutableByteCollection
- Specified by:
newEmpty
in interfaceMutableByteSet
- Since:
- 9.2.
-