Searched defs:AtomicInteger (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicInteger.java14 * {@code AtomicInteger} is used in applications such as atomically
23 public class AtomicInteger extends Number implements java.io.Serializable { class in inherits:Number,java.io.Serializable
33 (AtomicInteger.class.getDeclaredField("value"));
40 * Creates a new AtomicInteger with the given initial value.
44 public AtomicInteger(int initialValue) { method in class:AtomicInteger
49 * Creates a new AtomicInteger with initial value {@code 0}.
51 public AtomicInteger() { method in class:AtomicInteger
220 * Returns the value of this {@code AtomicInteger} as an {@code int}.
227 * Returns the value of this {@code AtomicInteger} as a {@code long}
235 * Returns the value of this {@code AtomicInteger} a
[all...]

Completed in 77 milliseconds