public enum Verdict extends Enum<Verdict>
| Modifier and Type | Method and Description |
|---|---|
static Verdict |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Verdict[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Verdict FAILURE
public static final Verdict SUCCESS
public static final Verdict IGNORED
public static Verdict[] values()
for (Verdict c : Verdict.values()) System.out.println(c);
public static Verdict 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 © 2019. All rights reserved.