public enum SourceDownloadErrorCause extends Enum<SourceDownloadErrorCause>
| Enum Constant and Description |
|---|
ALL_DOWNLOAD_FAILED
すべてのダウンロードに失敗しました。
|
| Modifier and Type | Method and Description |
|---|---|
static SourceDownloadErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceDownloadErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceDownloadErrorCause ALL_DOWNLOAD_FAILED
public static SourceDownloadErrorCause[] values()
for (SourceDownloadErrorCause c : SourceDownloadErrorCause.values()) System.out.println(c);
public static SourceDownloadErrorCause 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.