java.io.Serializable, java.lang.Comparable<Engine.Result.Type>public static enum Engine.Result.Type extends java.lang.Enum<Engine.Result.Type>
| Enum Constant | Description |
|---|---|
FAILURE |
|
MAPPING_UPDATE_REQUIRED |
|
SUCCESS |
| Modifier and Type | Method | Description |
|---|---|---|
static Engine.Result.Type |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Engine.Result.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Engine.Result.Type SUCCESS
public static final Engine.Result.Type FAILURE
public static final Engine.Result.Type MAPPING_UPDATE_REQUIRED
public static Engine.Result.Type[] values()
for (Engine.Result.Type c : Engine.Result.Type.values()) System.out.println(c);
public static Engine.Result.Type 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