public enum DependsCollectState extends Enum<DependsCollectState>
Enum Constant and Description |
---|
COLLECTING_DEPENDS_DEPENDS
依存関係の依存関係が検出された場合、再帰的に解決していることを示します。
|
DOWNLOADING_DEPENDS
依存関係のダウンロード中であることを示します。
|
INITIALIZED
依存関係の取得が初期化されたことを示します。
|
RESOLVING_DEPENDS
依存関係の解決中であることを示します。
|
Modifier and Type | Method and Description |
---|---|
static DependsCollectState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependsCollectState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependsCollectState INITIALIZED
public static final DependsCollectState RESOLVING_DEPENDS
public static final DependsCollectState DOWNLOADING_DEPENDS
public static final DependsCollectState COLLECTING_DEPENDS_DEPENDS
public static DependsCollectState[] values()
for (DependsCollectState c : DependsCollectState.values()) System.out.println(c);
public static DependsCollectState 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.