public enum InstallTasks extends Enum<InstallTasks>
Enum Constant and Description |
---|
CHECKING_ENVIRONMENT
環境の状態を確認中であることを示します。
例えば、既にインストールされているプラグインを新規にインストールしようとした場合や、
無視リストに含まれているプラグインをインストールしようとしていないかどうかを確認します。
|
COLLECTING_DEPENDENCIES
依存関係のインストール中であることを示します。
|
COMPUTING_LOAD_ORDER
プラグインの読み込み順序を計算中であることを示します。
|
DOWNLOADING
プラグインのダウンロード中であることを示します。
|
INITIALIZED
インストーラが初期化されたことを示します。
|
INITIALIZING
インストーラの初期化中であることを示します。
|
INSTALLING_PLUGINS
プラグインのインストール中であることを示します。
|
LOADING_PLUGIN_DESCRIPTION
プラグイン情報の読み込み中であることを示します。
|
REMOVING_OLD_PLUGIN
古いプラグインの削除中であることを示します。
このタスクは必ずしも実行されるわけではなく、
AlreadyInstalledPluginSignal で AlreadyInstalledPluginSignal#setReplacePlugin(boolean) に true が設定されてた場合にのみ実行されます。 |
RESOLVING_QUERY
プラグイン・クエリの解決中であることを示します。
|
Modifier and Type | Method and Description |
---|---|
static InstallTasks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstallTasks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstallTasks INITIALIZED
public static final InstallTasks INITIALIZING
public static final InstallTasks RESOLVING_QUERY
PluginResolveTask
public static final InstallTasks DOWNLOADING
DownloadTask
public static final InstallTasks LOADING_PLUGIN_DESCRIPTION
PluginDescriptionFile
,
DescriptionLoadTask
public static final InstallTasks CHECKING_ENVIRONMENT
public static final InstallTasks REMOVING_OLD_PLUGIN
AlreadyInstalledPluginSignal
で AlreadyInstalledPluginSignal#setReplacePlugin(boolean)
に true
が設定されてた場合にのみ実行されます。public static final InstallTasks COLLECTING_DEPENDENCIES
DependsCollectTask
public static final InstallTasks COMPUTING_LOAD_ORDER
DependsLoadOrderComputingSignal
public static final InstallTasks INSTALLING_PLUGINS
AbstractInstallTask
public static InstallTasks[] values()
for (InstallTasks c : InstallTasks.values()) System.out.println(c);
public static InstallTasks 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.