public static enum OnHeapMemoryAccess.BarrierType extends Enum<OnHeapMemoryAccess.BarrierType>
| Enum Constant and Description |
|---|
ARRAY
Array object access.
|
FIELD
Field object access.
|
NONE
Primitive access which do not necessitate barriers.
|
PHANTOM_FIELD
Phantom field access (e.g.
|
UNKNOWN
Unknown (aka field or array) object access.
|
WEAK_FIELD
Weak field access (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static OnHeapMemoryAccess.BarrierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnHeapMemoryAccess.BarrierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnHeapMemoryAccess.BarrierType NONE
public static final OnHeapMemoryAccess.BarrierType ARRAY
public static final OnHeapMemoryAccess.BarrierType FIELD
public static final OnHeapMemoryAccess.BarrierType UNKNOWN
public static final OnHeapMemoryAccess.BarrierType WEAK_FIELD
public static final OnHeapMemoryAccess.BarrierType PHANTOM_FIELD
public static OnHeapMemoryAccess.BarrierType[] values()
public static OnHeapMemoryAccess.BarrierType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null