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