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