Package org.jboss.stm.types
Interface AtomicBoolean
public interface AtomicBoolean
-
Method Summary
Modifier and TypeMethodDescriptionand
(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.flip()
boolean
get()
not()
or
(AtomicBoolean param) void
set
(boolean val) xor
(AtomicBoolean param)
-
Method Details
-
set
void set(boolean val) -
get
boolean get() -
not
AtomicBoolean not() -
flip
AtomicBoolean flip() -
and
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. If performed within the scope of a transaction, the objects used to determine the return value may have their states changed making the return invalid. -
or
-
xor
-