public static enum DFA.TranCond extends Enum<DFA.TranCond>
| Enum Constant and Description |
|---|
ASSIGN |
I_ASSIGN |
I_INTER_LOAD |
I_LOAD |
I_NEW |
I_PARAM |
I_RETURN |
I_STORE |
I_THROW |
INTER_ASSIGN |
INTER_STORE |
LOAD |
NEW |
PARAM |
RETURN |
STORE |
THROW |
| Modifier and Type | Method and Description |
|---|---|
static DFA.TranCond |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DFA.TranCond[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DFA.TranCond PARAM
public static final DFA.TranCond I_PARAM
public static final DFA.TranCond RETURN
public static final DFA.TranCond I_RETURN
public static final DFA.TranCond THROW
public static final DFA.TranCond I_THROW
public static final DFA.TranCond ASSIGN
public static final DFA.TranCond I_ASSIGN
public static final DFA.TranCond LOAD
public static final DFA.TranCond I_LOAD
public static final DFA.TranCond STORE
public static final DFA.TranCond I_STORE
public static final DFA.TranCond NEW
public static final DFA.TranCond I_NEW
public static final DFA.TranCond INTER_STORE
public static final DFA.TranCond INTER_ASSIGN
public static final DFA.TranCond I_INTER_LOAD
public static DFA.TranCond[] values()
for (DFA.TranCond c : DFA.TranCond.values()) System.out.println(c);
public static DFA.TranCond 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 nullCopyright © 2024 Soot OSS. All rights reserved.