Class SynchronizedCharSet
java.lang.Object
org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedCharCollection
org.eclipse.collections.impl.set.mutable.primitive.SynchronizedCharSet
- All Implemented Interfaces:
Serializable,CharIterable,MutableCharCollection,PrimitiveIterable,CharSet,MutableCharSet
public class SynchronizedCharSet extends AbstractSynchronizedCharCollection implements MutableCharSet
A synchronized view of a
MutableCharSet. It is imperative that the user manually synchronize on the collection when iterating over it using the
CharIterator, as per Collections.synchronizedCollection(Collection).
This file was automatically generated from template file synchronizedPrimitiveSet.stg.
- Since:
- 3.1.
- See Also:
MutableCharSet.asSynchronized(),MutableSet.asSynchronized(), Serialized Form
-
Constructor Summary
Constructors Constructor Description SynchronizedCharSet(MutableCharSet set)SynchronizedCharSet(MutableCharSet set, Object newLock) -
Method Summary
Modifier and Type Method Description LazyCharIterableasLazy()Returns a LazyCharIterable adapter wrapping the source CharIterable.MutableCharSetasSynchronized()MutableCharSetasUnmodifiable()<V> MutableSet<V>collect(CharToObjectFunction<? extends V> function)Returns a new collection with the results of applying the specified function on each element of the source collection.booleanequals(Object otherSet)Follows the same general contract asSet.equals(Object).CharSetfreeze()Returns a frozen copy of this set.inthashCode()Follows the same general contract asSet.hashCode().MutableCharSetnewEmpty()Creates a new empty mutable version of the same Set type.static SynchronizedCharSetof(MutableCharSet set)This method will take a MutableCharSet and wrap it directly in a SynchronizedCharSet.static SynchronizedCharSetof(MutableCharSet set, Object lock)This method will take a MutableCharSet and wrap it directly in a SynchronizedCharSet.MutableCharSetreject(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.MutableCharSetselect(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.ImmutableCharSettoImmutable()Returns an immutable copy of this set.SynchronizedCharSetwith(char element)SynchronizedCharSetwithAll(CharIterable elements)SynchronizedCharSetwithout(char element)SynchronizedCharSetwithoutAll(CharIterable elements)Methods inherited from class org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedCharCollection
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, appendString, average, charIterator, 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, toStringMethods inherited from interface org.eclipse.collections.api.CharIterable
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, toSortedListMethods inherited from interface org.eclipse.collections.api.collection.primitive.MutableCharCollection
add, addAll, addAll, charIterator, clear, remove, removeAll, removeAll, removeIf, retainAll, retainAllMethods 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 MutableCharSet and wrap it directly in a SynchronizedCharSet. -
of
This method will take a MutableCharSet and wrap it directly in a SynchronizedCharSet. Additionally, a developer specifies which lock to use with the collection. -
without
- Specified by:
withoutin interfaceMutableCharCollection- Specified by:
withoutin interfaceMutableCharSet- Overrides:
withoutin classAbstractSynchronizedCharCollection
-
with
- Specified by:
within interfaceMutableCharCollection- Specified by:
within interfaceMutableCharSet- Overrides:
within classAbstractSynchronizedCharCollection
-
withAll
- Specified by:
withAllin interfaceMutableCharCollection- Specified by:
withAllin interfaceMutableCharSet- Overrides:
withAllin classAbstractSynchronizedCharCollection
-
withoutAll
- Specified by:
withoutAllin interfaceMutableCharCollection- Specified by:
withoutAllin interfaceMutableCharSet- Overrides:
withoutAllin classAbstractSynchronizedCharCollection
-
select
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.- Specified by:
selectin interfaceCharIterable- Specified by:
selectin interfaceCharSet- Specified by:
selectin interfaceMutableCharCollection- Specified by:
selectin interfaceMutableCharSet- Overrides:
selectin classAbstractSynchronizedCharCollection
-
reject
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.- Specified by:
rejectin interfaceCharIterable- Specified by:
rejectin interfaceCharSet- Specified by:
rejectin interfaceMutableCharCollection- Specified by:
rejectin interfaceMutableCharSet- Overrides:
rejectin classAbstractSynchronizedCharCollection
-
collect
Description copied from interface:CharIterableReturns 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:
collectin interfaceCharIterable- Specified by:
collectin interfaceCharSet- Specified by:
collectin interfaceMutableCharCollection- Specified by:
collectin interfaceMutableCharSet- Overrides:
collectin classAbstractSynchronizedCharCollection
-
equals
Description copied from interface:CharSetFollows the same general contract asSet.equals(Object). -
hashCode
public int hashCode()Description copied from interface:CharSetFollows the same general contract asSet.hashCode(). -
asLazy
Description copied from interface:CharIterableReturns a LazyCharIterable adapter wrapping the source CharIterable.- Specified by:
asLazyin interfaceCharIterable- Overrides:
asLazyin classAbstractSynchronizedCharCollection
-
asUnmodifiable
- Specified by:
asUnmodifiablein interfaceMutableCharCollection- Specified by:
asUnmodifiablein interfaceMutableCharSet- Overrides:
asUnmodifiablein classAbstractSynchronizedCharCollection
-
asSynchronized
- Specified by:
asSynchronizedin interfaceMutableCharCollection- Specified by:
asSynchronizedin interfaceMutableCharSet- Overrides:
asSynchronizedin classAbstractSynchronizedCharCollection
-
freeze
Description copied from interface:MutableCharSetReturns a frozen copy of this set. A frozen copy is the same thing as an immutable copy without safe-publish guarantees.- Specified by:
freezein interfaceCharSet- Specified by:
freezein interfaceMutableCharSet
-
toImmutable
Description copied from interface:MutableCharSetReturns an immutable copy of this set.- Specified by:
toImmutablein interfaceCharSet- Specified by:
toImmutablein interfaceMutableCharCollection- Specified by:
toImmutablein interfaceMutableCharSet- Overrides:
toImmutablein classAbstractSynchronizedCharCollection
-
newEmpty
Description copied from interface:MutableCharSetCreates a new empty mutable version of the same Set type.- Specified by:
newEmptyin interfaceMutableCharCollection- Specified by:
newEmptyin interfaceMutableCharSet- Since:
- 9.2.
-