public static enum PseudocodeVariablesData.VariableUseState extends java.lang.Enum<PseudocodeVariablesData.VariableUseState>
Enum Constant and Description |
---|
LAST_READ |
LAST_WRITTEN |
ONLY_WRITTEN_NEVER_READ |
UNUSED |
Modifier and Type | Method and Description |
---|---|
static boolean |
isUsed(PseudocodeVariablesData.VariableUseState variableUseState) |
static PseudocodeVariablesData.VariableUseState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PseudocodeVariablesData.VariableUseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PseudocodeVariablesData.VariableUseState LAST_READ
public static final PseudocodeVariablesData.VariableUseState LAST_WRITTEN
public static final PseudocodeVariablesData.VariableUseState ONLY_WRITTEN_NEVER_READ
public static final PseudocodeVariablesData.VariableUseState UNUSED
public static PseudocodeVariablesData.VariableUseState[] values()
for (PseudocodeVariablesData.VariableUseState c : PseudocodeVariablesData.VariableUseState.values()) System.out.println(c);
public static PseudocodeVariablesData.VariableUseState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static boolean isUsed(@Nullable PseudocodeVariablesData.VariableUseState variableUseState)