Home | History | Annotate | Download | only in atomic

Lines Matching defs:AtomicLong

45  * {@code AtomicLong} is used in applications such as atomically
54 public class AtomicLong extends Number implements java.io.Serializable {
77 (AtomicLong.class.getDeclaredField("value"));
86 * Creates a new AtomicLong with the given initial value.
90 public AtomicLong(long initialValue) {
95 * Creates a new AtomicLong with initial value {@code 0}.
97 public AtomicLong() {
320 * Returns the value of this {@code AtomicLong} as an {@code int}
329 * Returns the value of this {@code AtomicLong} as a {@code long}.
337 * Returns the value of this {@code AtomicLong} as a {@code float}
346 * Returns the value of this {@code AtomicLong} as a {@code double}