Toggle navigation
Home
java.util.Set to java.util.concurrent.atomic.AtomicReference
No. of Instances - 3
No. of Commits - 2
No. of Projects - {'infinispan', 'presto'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Other
Collections.synchronizedSet(CollectionFactory.makeSet(INITIAL_LOCK_CAPACITY,keyEquivalence))
to
value == null ? Collections.synchronizedSet(CollectionFactory.makeSet(INITIAL_LOCK_CAPACITY,keyEquivalence)) : value
Collections.synchronizedSet(new HashSet<>(INITIAL_LOCK_CAPACITY))
to
value == null ? Collections.synchronizedSet(new HashSet<>(INITIAL_LOCK_CAPACITY)) : value
ImmutableSet.copyOf(inputs)
to
ImmutableSet.copyOf(inputs)