public static enum PluginUpdater.ReleaseType extends Enum<PluginUpdater.ReleaseType>
| Enum Constant and Description |
|---|
ALPHA
An "alpha" file.
|
BETA
A "beta" file.
|
RELEASE
A "release" file.
|
| Modifier and Type | Method and Description |
|---|---|
static PluginUpdater.ReleaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginUpdater.ReleaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginUpdater.ReleaseType ALPHA
public static final PluginUpdater.ReleaseType BETA
public static final PluginUpdater.ReleaseType RELEASE
public static PluginUpdater.ReleaseType[] values()
for (PluginUpdater.ReleaseType c : PluginUpdater.ReleaseType.values()) System.out.println(c);
public static PluginUpdater.ReleaseType 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. All rights reserved.