The list of methods to do AtomicBoolean are organized into topic(s).
boolean
getBoolean(Object value) Returns the boolean value of the given Object .
return getBoolean(value, false, false);
boolean
isBoolean(Class returnType) is Boolean
return (returnType == Boolean.class || returnType == boolean.class || returnType == AtomicBoolean.class);
boolean
isWriteRelativeUris() Whether to write URI enums using relative URIs.
return WRITE_RELATIVE_URIS.get();
void
remove() remove
currentFlagHolder.remove();
Object
resolveArgReferences(Object arg) resolve Arg References
boolean resolved = false;
while (!resolved) {
if (arg instanceof AtomicReference) {
arg = ((AtomicReference<?>) arg).get();
} else if (arg instanceof AtomicBoolean) {
arg = ((AtomicBoolean) arg).get() ? 1 : 0;
resolved = true;
} else if (arg instanceof ThreadLocal) {
...