public enum UninstallState extends Enum<UninstallState>
Enum Constant and Description |
---|
CLASSES_UNLOADING
クラスのアンロード中であることを示します。
|
COMMANDS_UNPATCHING
コマンドのアンパッチ中であることを示します。
|
INITIALIZED
アンインストールが初期化されたことを示します。
|
PLUGIN_DISABLING
プラグインの無効化中であることを示します。
|
RECIPES_UNREGISTERING
レシピの登録解除中であることを示します。
|
REMOVING_FROM_BUKKIT
Bukkit からプラグインをアンロード中であることを示します。
|
UNINSTALLING
アンインストールが開始されたことを示します。
|
Modifier and Type | Method and Description |
---|---|
static UninstallState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UninstallState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UninstallState INITIALIZED
public static final UninstallState UNINSTALLING
public static final UninstallState RECIPES_UNREGISTERING
public static final UninstallState COMMANDS_UNPATCHING
public static final UninstallState PLUGIN_DISABLING
public static final UninstallState REMOVING_FROM_BUKKIT
public static final UninstallState CLASSES_UNLOADING
public static UninstallState[] values()
for (UninstallState c : UninstallState.values()) System.out.println(c);
public static UninstallState 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 © 2023. All rights reserved.