public static enum PluginIsDependencySignal.Operation extends Enum<PluginIsDependencySignal.Operation>
Enum Constant and Description |
---|
CANCEL
アンインストールをキャンセルします。
|
DISABLE
依存関係にあるプラグインを無効化します。
サーバからはアンインストールされませんが, リロード時またはサーバ再起動時に有効化されなくなります。
|
IGNORE
依存関係にあるプラグインを無視してアンインストールします。
この場合、依存関係にあるプラグインがほぼ確実に動作しなくなります。
|
UNINSTALL
依存関係にあるプラグインも全てアンインストールします。
|
UNLOAD_ONLY
アンロードのみ行い、サーバのプラグインフォルダからは削除しません。
|
Modifier and Type | Method and Description |
---|---|
static PluginIsDependencySignal.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginIsDependencySignal.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginIsDependencySignal.Operation UNINSTALL
public static final PluginIsDependencySignal.Operation DISABLE
public static final PluginIsDependencySignal.Operation IGNORE
public static final PluginIsDependencySignal.Operation UNLOAD_ONLY
public static final PluginIsDependencySignal.Operation CANCEL
public static PluginIsDependencySignal.Operation[] values()
for (PluginIsDependencySignal.Operation c : PluginIsDependencySignal.Operation.values()) System.out.println(c);
public static PluginIsDependencySignal.Operation 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.