public enum LookupState extends Enum<LookupState>
Enum Constant and Description |
---|
INITIALIZED
プラグインの検索が初期化されたことを示します。
|
PLUGIN_LOOKUP
プラグインの検索中であることを示します。
|
QUERY_PARSING
クエリの解析中であることを示します。
|
Modifier and Type | Method and Description |
---|---|
static LookupState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LookupState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookupState INITIALIZED
public static final LookupState QUERY_PARSING
public static final LookupState PLUGIN_LOOKUP
public static LookupState[] values()
for (LookupState c : LookupState.values()) System.out.println(c);
public static LookupState 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.