@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum JobLogEvent extends Enum<JobLogEvent>
Enum Constant and Description |
---|
CLEANUP_END |
CLEANUP_FAIL |
CLEANUP_START |
CONVERSION_END |
CONVERSION_FAIL |
CONVERSION_START |
JOB_CANCEL |
JOB_END |
JOB_START |
LAUNCH_FAILED |
LAUNCH_START |
SERVER_SKIPPED |
SNAPSHOT_END |
SNAPSHOT_FAIL |
SNAPSHOT_START |
USING_PREVIOUS_SNAPSHOT |
Modifier and Type | Method and Description |
---|---|
static JobLogEvent |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static JobLogEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobLogEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobLogEvent JOB_START
public static final JobLogEvent SERVER_SKIPPED
public static final JobLogEvent CLEANUP_START
public static final JobLogEvent CLEANUP_END
public static final JobLogEvent CLEANUP_FAIL
public static final JobLogEvent SNAPSHOT_START
public static final JobLogEvent SNAPSHOT_END
public static final JobLogEvent SNAPSHOT_FAIL
public static final JobLogEvent USING_PREVIOUS_SNAPSHOT
public static final JobLogEvent CONVERSION_START
public static final JobLogEvent CONVERSION_END
public static final JobLogEvent CONVERSION_FAIL
public static final JobLogEvent LAUNCH_START
public static final JobLogEvent LAUNCH_FAILED
public static final JobLogEvent JOB_CANCEL
public static final JobLogEvent JOB_END
public static JobLogEvent[] values()
for (JobLogEvent c : JobLogEvent.values()) System.out.println(c);
public static JobLogEvent 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 nullpublic String toString()
toString
in class Enum<JobLogEvent>
public static JobLogEvent fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.