AtomicEnum
Provides basic atomic operations for arbitrary enum type.
Reads the value of the specified field. On systems that require it, inserts a
memory barrier that prevents the processor from reordering memory operations
as follows: If a read or write appears after this method in the code, the processor
cannot move it before this method.
Writes the specified value to the specified field. On systems that require it,
inserts a memory barrier that prevents the processor from reordering memory operations
as follows: If a read or write appears before this method in the code, the processor
cannot move it after this method.