Class Atomics
java.lang.Object
com.google.common.util.concurrent.Atomics
Static utility methods pertaining to classes in the
java.util.concurrent.atomic package.- Since:
- 10.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <V> AtomicReference<V>Creates anAtomicReferenceinstance with no initial value.static <V> AtomicReference<V>newReference(V initialValue) Creates anAtomicReferenceinstance with the given initial value.static <E> AtomicReferenceArray<E>newReferenceArray(int length) Creates anAtomicReferenceArrayinstance of given length.static <E> AtomicReferenceArray<E>newReferenceArray(E[] array) Creates anAtomicReferenceArrayinstance with the same length as, and all elements copied from, the given array.
-
Constructor Details
-
Atomics
private Atomics()
-
-
Method Details
-
newReference
Creates anAtomicReferenceinstance with no initial value.- Returns:
- a new
AtomicReferencewith no initial value
-
newReference
Creates anAtomicReferenceinstance with the given initial value.- Parameters:
initialValue- the initial value- Returns:
- a new
AtomicReferencewith the given initial value
-
newReferenceArray
Creates anAtomicReferenceArrayinstance of given length.- Parameters:
length- the length of the array- Returns:
- a new
AtomicReferenceArraywith the given length
-
newReferenceArray
Creates anAtomicReferenceArrayinstance with the same length as, and all elements copied from, the given array.- Parameters:
array- the array to copy elements from- Returns:
- a new
AtomicReferenceArraycopied from the given array
-