public enum ShadowResult extends Enum<ShadowResult>
Enum Constant and Description |
---|
accepted |
delta |
documents |
rejected |
Modifier and Type | Method and Description |
---|---|
static ShadowResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShadowResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShadowResult accepted
public static final ShadowResult delta
public static final ShadowResult documents
public static final ShadowResult rejected
public static ShadowResult 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 static ShadowResult[] values()
for (ShadowResult c : ShadowResult.values()) System.out.println(c);