public static enum SimpleLocalDefs.FlowAnalysisMode extends Enum<SimpleLocalDefs.FlowAnalysisMode>
| Enum Constant and Description |
|---|
Automatic
Automatically detect the mode to use
|
FlowInsensitive
Always conduct a flow-insensitive analysis
|
OmitSSA
Never use the SSA form, even if the unit graph would allow for a flow-insensitive analysis without losing precision
|
| Modifier and Type | Method and Description |
|---|---|
static SimpleLocalDefs.FlowAnalysisMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleLocalDefs.FlowAnalysisMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleLocalDefs.FlowAnalysisMode Automatic
public static final SimpleLocalDefs.FlowAnalysisMode OmitSSA
public static final SimpleLocalDefs.FlowAnalysisMode FlowInsensitive
public static SimpleLocalDefs.FlowAnalysisMode[] values()
for (SimpleLocalDefs.FlowAnalysisMode c : SimpleLocalDefs.FlowAnalysisMode.values()) System.out.println(c);
public static SimpleLocalDefs.FlowAnalysisMode 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.