public enum AutoRemoveErrorCause extends Enum<AutoRemoveErrorCause>
Enum Constant and Description |
---|
CANCELLED
自動削除がキャンセルされました。
|
NO_AUTO_REMOVABLE_PLUGIN_FOUND
自動削除が可能なプラグインが見つかりませんでした。
|
UNINSTALL_FAILED
アンインストールに失敗しました。
|
UNINSTALLER_INIT_FAILED
アンインストーラの初期化に失敗しました。
|
Modifier and Type | Method and Description |
---|---|
static AutoRemoveErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoRemoveErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoRemoveErrorCause NO_AUTO_REMOVABLE_PLUGIN_FOUND
public static final AutoRemoveErrorCause UNINSTALLER_INIT_FAILED
public static final AutoRemoveErrorCause UNINSTALL_FAILED
public static final AutoRemoveErrorCause CANCELLED
public static AutoRemoveErrorCause[] values()
for (AutoRemoveErrorCause c : AutoRemoveErrorCause.values()) System.out.println(c);
public static AutoRemoveErrorCause 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.