The methods of Java.Util.Concurrent.Atomic.AtomicIntegerArray are listed below. For a list of all members, see the AtomicIntegerArray Members list.
See Also: Inherited members from Java.Lang.Object
AddAndGet(int, int)Atomically adds the given value to the element at index i. | ||
CompareAndSet(int, int, int)Atomically sets the element at position i to the given updated value if the current value == the expected value. | ||
DecrementAndGet(int)Atomically decrements by one the element at index i. | ||
Get(int)Gets the current value at position i. | ||
GetAndAdd(int, int)Atomically adds the given value to the element at index i. | ||
GetAndDecrement(int)Atomically decrements by one the element at index i. | ||
GetAndIncrement(int)Atomically increments by one the element at index i. | ||
GetAndSet(int, int)Atomically sets the element at position i to the given value and returns the old value. | ||
IncrementAndGet(int)Atomically increments by one the element at index i. | ||
LazySet(int, int)Eventually sets the element at position i to the given value. | ||
Length()Returns the length of the array. | ||
Set(int, int)Sets the element at position i to the given value. | ||
WeakCompareAndSet(int, int, int)Atomically sets the element at position i to the given updated value if the current value == the expected value. |