public enum UpdateStatisticsResult extends java.lang.Enum<UpdateStatisticsResult>
| Modifier and Type | Method and Description |
|---|---|
static UpdateStatisticsResult |
fromString(java.lang.String stringValue,
UpdateStatisticsResult defaultReturnValue)
Returns the enum UpdateStatisticsResult which matches the specified String value.
|
static UpdateStatisticsResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateStatisticsResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateStatisticsResult ERROR
public static final UpdateStatisticsResult OK
public static final UpdateStatisticsResult OPENED
public static UpdateStatisticsResult[] values()
for (UpdateStatisticsResult c : UpdateStatisticsResult.values()) System.out.println(c);
public static UpdateStatisticsResult 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 nullpublic static UpdateStatisticsResult fromString(java.lang.String stringValue, UpdateStatisticsResult defaultReturnValue)
stringValue - The UpdateStatisticsResult value as StringdefaultReturnValue - The UpdateStatisticsResult to return when nothing matches (or null was provided)