public enum InstallErrorCause extends Enum<InstallErrorCause>
| Enum Constant and Description |
|---|
INVALID_KPM_INFO_FILE
プラグインの持つKPM情報ファイルが不正であり、
InvalidKPMInfoFileSignal でも無視が選択されませんでした。 |
PLUGIN_ALREADY_INSTALLED
インストールしようとしているプラグインが、既にインストールされており、
AlreadyInstalledPluginSignal でも置換が選択されませんでした。 |
PLUGIN_IGNORED
変更しようとしているプラグインが、無視リストに登録されており、
IgnoredPluginSignal でも強制インストールが選択されませんでした。 |
| Modifier and Type | Method and Description |
|---|---|
static InstallErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstallErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstallErrorCause PLUGIN_IGNORED
IgnoredPluginSignal でも強制インストールが選択されませんでした。public static final InstallErrorCause PLUGIN_ALREADY_INSTALLED
AlreadyInstalledPluginSignal でも置換が選択されませんでした。public static final InstallErrorCause INVALID_KPM_INFO_FILE
InvalidKPMInfoFileSignal でも無視が選択されませんでした。public static InstallErrorCause[] values()
for (InstallErrorCause c : InstallErrorCause.values()) System.out.println(c);
public static InstallErrorCause 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.