@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ActivityStreamStatus extends Enum<ActivityStreamStatus>
| Enum Constant and Description |
|---|
Started |
Starting |
Stopped |
Stopping |
| Modifier and Type | Method and Description |
|---|---|
static ActivityStreamStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ActivityStreamStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityStreamStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityStreamStatus Stopped
public static final ActivityStreamStatus Starting
public static final ActivityStreamStatus Started
public static final ActivityStreamStatus Stopping
public static ActivityStreamStatus[] values()
for (ActivityStreamStatus c : ActivityStreamStatus.values()) System.out.println(c);
public static ActivityStreamStatus 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<ActivityStreamStatus>public static ActivityStreamStatus fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.