public static enum LaunchEmptyResult.Tag extends Enum<LaunchEmptyResult.Tag>
LaunchEmptyResult
.Enum Constant and Description |
---|
ASYNC_JOB_ID
This response indicates that the processing is asynchronous.
|
COMPLETE
The job finished synchronously and successfully.
|
Modifier and Type | Method and Description |
---|---|
static LaunchEmptyResult.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LaunchEmptyResult.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaunchEmptyResult.Tag ASYNC_JOB_ID
public static final LaunchEmptyResult.Tag COMPLETE
public static LaunchEmptyResult.Tag[] values()
for (LaunchEmptyResult.Tag c : LaunchEmptyResult.Tag.values()) System.out.println(c);
public static LaunchEmptyResult.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