public interface AtomicBoolean
Modifier and Type | Method and Description |
---|---|
AtomicBoolean |
and(AtomicBoolean param)
The following operations produce side-effects in that the
return values are new objects based on the current state of the
current object and the parameter.
|
AtomicBoolean |
flip() |
boolean |
get() |
AtomicBoolean |
not() |
AtomicBoolean |
or(AtomicBoolean param) |
void |
set(boolean val) |
AtomicBoolean |
xor(AtomicBoolean param) |
void set(boolean val)
boolean get()
AtomicBoolean not()
AtomicBoolean flip()
AtomicBoolean and(AtomicBoolean param)
AtomicBoolean or(AtomicBoolean param)
AtomicBoolean xor(AtomicBoolean param)
Copyright © 2021 JBoss by Red Hat. All rights reserved.