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