public enum RunnerResult extends java.lang.Enum<RunnerResult>
| Enum Constant and Description |
|---|
ABORTED
Aborted due to some internal error like corrupted stack
|
CANCELLED
Analysis is explicitly cancelled via
DataFlowRunner.cancel() |
NOT_APPLICABLE
Cannot analyze (probably method in severely incomplete)
|
OK
Successful completion
|
TOO_COMPLEX
Method is too complex for analysis
|
| Modifier and Type | Method and Description |
|---|---|
static RunnerResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RunnerResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunnerResult OK
public static final RunnerResult TOO_COMPLEX
public static final RunnerResult NOT_APPLICABLE
public static final RunnerResult CANCELLED
DataFlowRunner.cancel()public static final RunnerResult ABORTED
public static RunnerResult[] values()
for (RunnerResult c : RunnerResult.values()) System.out.println(c);
public static RunnerResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null