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