public enum SourceDownloadState extends Enum<SourceDownloadState>
Enum Constant and Description |
---|
ANALYZING_URLS
URLの解析中であることを示します。
|
DOWNLOADING_SOURCES
ソースをダウンロード中であることを示します。
|
INITIALIZED
ソースファイルのダウンロードが初期化されたことを示します。
|
Modifier and Type | Method and Description |
---|---|
static SourceDownloadState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceDownloadState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceDownloadState INITIALIZED
public static final SourceDownloadState ANALYZING_URLS
public static final SourceDownloadState DOWNLOADING_SOURCES
public static SourceDownloadState[] values()
for (SourceDownloadState c : SourceDownloadState.values()) System.out.println(c);
public static SourceDownloadState 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.