public enum Kind extends Enum<Kind>
| Enum Constant and Description |
|---|
INSTANCE_LOAD |
INSTANCE_STORE |
INTERPROCEDURAL_ASSIGN |
LOCAL_ASSIGN |
UNWRAPPED_FLOW |
WRAPPED_FLOW |
| Modifier and Type | Method and Description |
|---|---|
static Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Kind LOCAL_ASSIGN
public static final Kind INTERPROCEDURAL_ASSIGN
public static final Kind INSTANCE_LOAD
public static final Kind INSTANCE_STORE
public static final Kind WRAPPED_FLOW
public static final Kind UNWRAPPED_FLOW
public static Kind[] values()
for (Kind c : Kind.values()) System.out.println(c);
public static Kind 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.