public static enum HeapAccess.BarrierType extends Enum<HeapAccess.BarrierType>
| Enum Constant and Description |
|---|
IMPRECISE
Field object stores which necessitate imprecise barriers.
|
NONE
Primitive stores which do not necessitate barriers.
|
PRECISE
Array object stores which necessitate precise barriers.
|
| Modifier and Type | Method and Description |
|---|---|
static HeapAccess.BarrierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeapAccess.BarrierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeapAccess.BarrierType NONE
public static final HeapAccess.BarrierType PRECISE
public static final HeapAccess.BarrierType IMPRECISE
public static HeapAccess.BarrierType[] values()
for (HeapAccess.BarrierType c : HeapAccess.BarrierType.values()) System.out.println(c);
public static HeapAccess.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