public static enum DFA.TranCond extends Enum<DFA.TranCond>
| Enum Constant and Description |
|---|
ASSIGN |
CSLIKELY |
IASSIGN |
ILOAD |
INEW |
IPARAM |
ISTORE |
LOAD |
NEW |
PARAM |
STORE |
| 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 IPARAM
public static final DFA.TranCond ASSIGN
public static final DFA.TranCond IASSIGN
public static final DFA.TranCond LOAD
public static final DFA.TranCond ILOAD
public static final DFA.TranCond STORE
public static final DFA.TranCond ISTORE
public static final DFA.TranCond NEW
public static final DFA.TranCond INEW
public static final DFA.TranCond CSLIKELY
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.