public enum SimplifyResult extends Enum<SimplifyResult>
| Enum Constant and Description |
|---|
FAILED_NEGATIVE_RESULT |
FAILED_TOO_BIG_RESULT |
NO_EFFECT |
SIMPLIFIED |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFailure() |
static SimplifyResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimplifyResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimplifyResult FAILED_NEGATIVE_RESULT
public static final SimplifyResult FAILED_TOO_BIG_RESULT
public static final SimplifyResult NO_EFFECT
public static final SimplifyResult SIMPLIFIED
public static SimplifyResult[] values()
for (SimplifyResult c : SimplifyResult.values()) System.out.println(c);
public static SimplifyResult 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 nullpublic boolean isFailure()
Copyright © 2014. All rights reserved.