public enum PluginResolveErrorCause extends Enum<PluginResolveErrorCause>
| Enum Constant and Description |
|---|
CANCELLED
ユーザがキャンセルしたことを示します。
|
GOT_ERROR_RESULT
ErrorResult が サーバまたはプラグインリゾルバから返されたことを示します。 |
ILLEGAL_INTERNAL_STATE
予期しない内部エラーが発生したことを示します。
|
| Modifier and Type | Method and Description |
|---|---|
static PluginResolveErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginResolveErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginResolveErrorCause ILLEGAL_INTERNAL_STATE
public static final PluginResolveErrorCause GOT_ERROR_RESULT
ErrorResult が サーバまたはプラグインリゾルバから返されたことを示します。public static final PluginResolveErrorCause CANCELLED
public static PluginResolveErrorCause[] values()
for (PluginResolveErrorCause c : PluginResolveErrorCause.values()) System.out.println(c);
public static PluginResolveErrorCause 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.