public enum PluginsInstallState extends Enum<PluginsInstallState>
Enum Constant and Description |
---|
INITIALIZED
プラグインのインストールが初期化されたことを示します。
|
ONLOAD_RUNNING
プラグインの
Plugin.onLoad() の実行中であることを示します。 |
PLUGIN_ENABLING
プラグインの有効化中であることを示します。
|
PLUGIN_LOADING
プラグインの読み込み中であることを示します。
|
PLUGIN_RELOCATING
プラグインの再配置中であることを示します。
|
Modifier and Type | Method and Description |
---|---|
static PluginsInstallState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginsInstallState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginsInstallState INITIALIZED
public static final PluginsInstallState PLUGIN_RELOCATING
public static final PluginsInstallState PLUGIN_LOADING
public static final PluginsInstallState ONLOAD_RUNNING
Plugin.onLoad()
の実行中であることを示します。public static final PluginsInstallState PLUGIN_ENABLING
public static PluginsInstallState[] values()
for (PluginsInstallState c : PluginsInstallState.values()) System.out.println(c);
public static PluginsInstallState 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.