public enum EdgeKind extends Enum<EdgeKind>
| Enum Constant and Description |
|---|
ASSIGN |
CLOAD |
CSTORE |
IASSIGN |
ICLOAD |
ICSTORE |
ILOAD |
INEW |
ISTORE |
ITHIS |
LOAD |
NEW |
PARAM |
RETURN |
STORE |
THIS |
| Modifier and Type | Method and Description |
|---|---|
static EdgeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeKind NEW
public static final EdgeKind INEW
public static final EdgeKind ASSIGN
public static final EdgeKind IASSIGN
public static final EdgeKind LOAD
public static final EdgeKind ILOAD
public static final EdgeKind STORE
public static final EdgeKind ISTORE
public static final EdgeKind CLOAD
public static final EdgeKind ICLOAD
public static final EdgeKind CSTORE
public static final EdgeKind ICSTORE
public static final EdgeKind THIS
public static final EdgeKind ITHIS
public static final EdgeKind PARAM
public static final EdgeKind RETURN
public static EdgeKind[] values()
for (EdgeKind c : EdgeKind.values()) System.out.println(c);
public static EdgeKind 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.