public static enum SaveUrlJobStatus.Tag extends java.lang.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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null