public enum DependsComputeOrderState extends Enum<DependsComputeOrderState>
Enum Constant and Description |
---|
COMPUTING_DEPENDENCY_LOAD_ORDER
依存関係の読み込み順序の計算中であることを示します。
|
CREATING_DEPENDENCY_MAP
依存関係マップの構築中であることを示します。
|
INITIALIZED
依存関係の読み込み順序計算の初期化が完了したことを示します。
|
Modifier and Type | Method and Description |
---|---|
static DependsComputeOrderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependsComputeOrderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependsComputeOrderState INITIALIZED
public static final DependsComputeOrderState CREATING_DEPENDENCY_MAP
public static final DependsComputeOrderState COMPUTING_DEPENDENCY_LOAD_ORDER
public static DependsComputeOrderState[] values()
for (DependsComputeOrderState c : DependsComputeOrderState.values()) System.out.println(c);
public static DependsComputeOrderState 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.