public static enum SaveUrlJobStatus.Tag extends Enum<SaveUrlJobStatus.Tag>
SaveUrlJobStatus
.Enum Constant and Description |
---|
COMPLETE
Metadata of the file where the URL is saved to.
|
FAILED |
IN_PROGRESS
The asynchronous job is still in progress.
|
Modifier and Type | Method and Description |
---|---|
static SaveUrlJobStatus.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaveUrlJobStatus.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveUrlJobStatus.Tag IN_PROGRESS
public static final SaveUrlJobStatus.Tag COMPLETE
public static final SaveUrlJobStatus.Tag FAILED
public static SaveUrlJobStatus.Tag[] values()
for (SaveUrlJobStatus.Tag c : SaveUrlJobStatus.Tag.values()) System.out.println(c);
public static SaveUrlJobStatus.Tag 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 null