public enum UnInstallErrorCause extends Enum<UnInstallErrorCause>
Enum Constant and Description |
---|
CANCELLED
アンインストールがユーザまたはシグナルによってキャンセルされました。
|
PLUGIN_IGNORED
指定されたプラグインが無視リストに登録されており、
IgnoredPluginSignal でも強制アンインストールが選択されませんでした。 |
PLUGIN_IS_DEPENDENCY
指定されたプラグインが他のプラグインの依存関係に含まれており、
PluginIsDependencySignal でも強制アンインストールが選択されませんでした。 |
PLUGIN_NOT_FOUND
指定されたプラグインが見つかりませんでした。
|
Modifier and Type | Method and Description |
---|---|
static UnInstallErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnInstallErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnInstallErrorCause PLUGIN_NOT_FOUND
public static final UnInstallErrorCause PLUGIN_IGNORED
IgnoredPluginSignal
でも強制アンインストールが選択されませんでした。public static final UnInstallErrorCause PLUGIN_IS_DEPENDENCY
PluginIsDependencySignal
でも強制アンインストールが選択されませんでした。public static final UnInstallErrorCause CANCELLED
public static UnInstallErrorCause[] values()
for (UnInstallErrorCause c : UnInstallErrorCause.values()) System.out.println(c);
public static UnInstallErrorCause 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.