public enum UninstallErrorCause extends Enum<UninstallErrorCause>
Enum Constant and Description |
---|
INTERNAL_CLASS_UNLOAD_FAILED
内部:1つのプラグインのクラスのアンロードに失敗しました。
|
INTERNAL_DISABLE_AND_UNINSTALL_OK
內部:1つのプラグインの無効化に成功し、アンインストール処理を完了しました。
|
INTERNAL_PLUGIN_DISABLE_FAILED
内部:1つのプラグインの無効化に失敗しました。
|
INTERNAL_UNINSTALL_OK
内部:1つのプラグインのアンインストールに成功しました。
|
SOME_UNINSTALL_FAILED
いくつかのプラグインのアンインストールに失敗しました。
|
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 SOME_UNINSTALL_FAILED
public static final UninstallErrorCause INTERNAL_UNINSTALL_OK
public static final UninstallErrorCause INTERNAL_DISABLE_AND_UNINSTALL_OK
public static final UninstallErrorCause INTERNAL_PLUGIN_DISABLE_FAILED
public static final UninstallErrorCause INTERNAL_CLASS_UNLOAD_FAILED
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.