Enum Constant and Description |
---|
FAILURE
Denotes that the operation has failed.
|
SUCCESS
Denotes that the operation has completed successfully.
|
Modifier and Type | Method and Description |
---|---|
static Outcome |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Outcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Outcome SUCCESS
public static final Outcome FAILURE
public static Outcome[] values()
for (Outcome c : Outcome.values()) System.out.println(c);
public static Outcome 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 nullCopyright 2017 Kieker Project, http://kieker-monitoring.net