public enum ReadyForDownloadOriginal extends Enum<ReadyForDownloadOriginal>
Enum Constant and Description |
---|
ERROR
Error
|
NOT_READY
Not ready
|
READY
Ready
|
Modifier and Type | Method and Description |
---|---|
static ReadyForDownloadOriginal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadyForDownloadOriginal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadyForDownloadOriginal READY
public static final ReadyForDownloadOriginal NOT_READY
public static final ReadyForDownloadOriginal ERROR
public static ReadyForDownloadOriginal[] values()
for (ReadyForDownloadOriginal c : ReadyForDownloadOriginal.values()) System.out.println(c);
public static ReadyForDownloadOriginal 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 © 2019. All rights reserved.