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

/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicLong.java14 * {@code AtomicLong} is used in applications such as atomically
23 public class AtomicLong extends Number implements java.io.Serializable { class in inherits:Number,java.io.Serializable
47 (AtomicLong.class.getDeclaredField("value"));
54 * Creates a new AtomicLong with the given initial value.
58 public AtomicLong(long initialValue) { method in class:AtomicLong
63 * Creates a new AtomicLong with initial value {@code 0}.
65 public AtomicLong() { method in class:AtomicLong
234 * Returns the value of this {@code AtomicLong} as an {@code int}
242 * Returns the value of this {@code AtomicLong} as a {@code long}.
249 * Returns the value of this {@code AtomicLong} a
[all...]

Completed in 3 milliseconds