public enum PluginResolveState extends Enum<PluginResolveState>
Enum Constant and Description |
---|
INITIALIZED
プラグインの解決が初期化されたことを示します。
|
MULTI_RESOLVING
複数結果があった場合、どれを選択するかの選択中であることを示します。
|
PRE_RESOLVE_FINISHED
プラグインの解決が完了したことを示します。
|
PRE_RESOLVING
プラグインの解決が開始されたことを示します。
|
RESOLVE_FINISHED
プラグインの解決が完了したことを示します。
|
Modifier and Type | Method and Description |
---|---|
static PluginResolveState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginResolveState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginResolveState INITIALIZED
public static final PluginResolveState PRE_RESOLVING
public static final PluginResolveState PRE_RESOLVE_FINISHED
public static final PluginResolveState MULTI_RESOLVING
public static final PluginResolveState RESOLVE_FINISHED
public static PluginResolveState[] values()
for (PluginResolveState c : PluginResolveState.values()) System.out.println(c);
public static PluginResolveState 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.