public enum PluginsInstallErrorCause extends Enum<PluginsInstallErrorCause>
Enum Constant and Description |
---|
EXCEPTION_OCCURRED
不明な例外が発生しました。
|
INCOMPATIBLE_WITH_BUKKIT_VERSION
プラグインがこのサーバに互換性がありません。
|
INCOMPATIBLE_WITH_KPM_VERSION
プラグインがこのKPMに互換性がありません。
|
INVALID_PLUGIN
無効なプラグインが指定されました。
|
INVALID_PLUGIN_DESCRIPTION
無効なプラグイン情報ファイルが指定されました。
|
IO_EXCEPTION_OCCURRED
IOException が発生しました。 |
RELOCATE_FAILED
プラグインの再配置に失敗しました。
|
Modifier and Type | Method and Description |
---|---|
static PluginsInstallErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginsInstallErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginsInstallErrorCause RELOCATE_FAILED
public static final PluginsInstallErrorCause INVALID_PLUGIN
public static final PluginsInstallErrorCause INVALID_PLUGIN_DESCRIPTION
public static final PluginsInstallErrorCause INCOMPATIBLE_WITH_BUKKIT_VERSION
public static final PluginsInstallErrorCause INCOMPATIBLE_WITH_KPM_VERSION
public static final PluginsInstallErrorCause IO_EXCEPTION_OCCURRED
IOException
が発生しました。public static final PluginsInstallErrorCause EXCEPTION_OCCURRED
public static PluginsInstallErrorCause[] values()
for (PluginsInstallErrorCause c : PluginsInstallErrorCause.values()) System.out.println(c);
public static PluginsInstallErrorCause 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.