public static enum OnlineKeyValidator.Result extends Enum<OnlineKeyValidator.Result>
| Enum Constant and Description |
|---|
CANNOT_REACH_SERVER |
NO_ACCESS |
OK |
| Modifier and Type | Method and Description |
|---|---|
static OnlineKeyValidator.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnlineKeyValidator.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnlineKeyValidator.Result OK
public static final OnlineKeyValidator.Result NO_ACCESS
public static final OnlineKeyValidator.Result CANNOT_REACH_SERVER
public static OnlineKeyValidator.Result[] values()
for (OnlineKeyValidator.Result c : OnlineKeyValidator.Result.values()) System.out.println(c);
public static OnlineKeyValidator.Result 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 © 2017-2022. All Rights Reserved.