public enum UpgradeTasks extends Enum<UpgradeTasks>
Enum Constant and Description |
---|
CHECKING_ENVIRONMENT
環境の状態を確認中であることを示します。
|
COMPUTING_DEPENDENCY_LOAD_ORDER
無効化した依存関係のプラグインの読み込み順の再設定中であることを示します。
|
INITIALIZED
アップグレードが初期化されたことを示します。
|
INSTALLING_PLUGIN
プラグインのインストール中であることを示します。
|
RE_LOADING_DEPENDENCIES
無効化した依存関係のプラグインの再有効化中であることを示します。
|
RESOLVING_PLUGIN
プラグインの解決中であることを示します。
|
RETRIEVING_METADATA
アップグレード対象のメタデータの取得中であることを示します。
|
RETRIEVING_UPDATE_QUERY
アップグレード対象のクエリの取得中であることを示します。
|
SEARCHING_PLUGIN
アップグレード対象の検索中であることを示します。
|
UNINSTALLING_PLUGIN
プラグインのアンインストール中であることを示します。
|
Modifier and Type | Method and Description |
---|---|
static UpgradeTasks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpgradeTasks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpgradeTasks INITIALIZED
public static final UpgradeTasks SEARCHING_PLUGIN
public static final UpgradeTasks CHECKING_ENVIRONMENT
public static final UpgradeTasks RETRIEVING_METADATA
public static final UpgradeTasks RETRIEVING_UPDATE_QUERY
public static final UpgradeTasks RESOLVING_PLUGIN
public static final UpgradeTasks UNINSTALLING_PLUGIN
public static final UpgradeTasks INSTALLING_PLUGIN
public static final UpgradeTasks COMPUTING_DEPENDENCY_LOAD_ORDER
public static final UpgradeTasks RE_LOADING_DEPENDENCIES
public static UpgradeTasks[] values()
for (UpgradeTasks c : UpgradeTasks.values()) System.out.println(c);
public static UpgradeTasks 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.