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