public enum UpdateStatisticsResult extends Enum<UpdateStatisticsResult>
| Modifier and Type | Method and Description |
|---|---|
static UpdateStatisticsResult |
fromString(String stringValue,
UpdateStatisticsResult defaultReturnValue)
Returns the enum UpdateStatisticsResult which matches the specified String value.
|
static UpdateStatisticsResult |
valueOf(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(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 UpdateStatisticsResult fromString(String stringValue, UpdateStatisticsResult defaultReturnValue)
stringValue - The UpdateStatisticsResult value as StringdefaultReturnValue - The UpdateStatisticsResult to return when nothing matches (or null was provided)Copyright © 2016–2020. All rights reserved.