public enum UnInstallTasks extends Enum<UnInstallTasks>
Enum Constant and Description |
---|
CHECKING_ENVIRONMENT
環境の状態の確認中を示します。
例えば、プラグインが存在するかや、無視リストに登録されていないかなどを確認します。
|
COMPUTING_UNINSTALL_ORDER
アンインストール順序の計算中を示します。
|
INITIALIZED
アンインストーラが初期化されたことを示します。
|
SEARCHING_PLUGIN
プラグインの検索中を示します。
|
UNINSTALLING_PLUGINS
プラグインをアンインストール中を示します。
|
Modifier and Type | Method and Description |
---|---|
static UnInstallTasks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnInstallTasks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnInstallTasks INITIALIZED
public static final UnInstallTasks SEARCHING_PLUGIN
public static final UnInstallTasks CHECKING_ENVIRONMENT
public static final UnInstallTasks COMPUTING_UNINSTALL_ORDER
public static final UnInstallTasks UNINSTALLING_PLUGINS
public static UnInstallTasks[] values()
for (UnInstallTasks c : UnInstallTasks.values()) System.out.println(c);
public static UnInstallTasks 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.