public static enum MediaFile.DeliveryMethod extends java.lang.Enum<MediaFile.DeliveryMethod>
| Enum Constant and Description |
|---|
PROGRESSIVE |
STREAMING |
| Modifier and Type | Method and Description |
|---|---|
static MediaFile.DeliveryMethod |
getByMethod(java.lang.String method) |
static MediaFile.DeliveryMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaFile.DeliveryMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaFile.DeliveryMethod STREAMING
public static final MediaFile.DeliveryMethod PROGRESSIVE
public static MediaFile.DeliveryMethod[] values()
for (MediaFile.DeliveryMethod c : MediaFile.DeliveryMethod.values()) System.out.println(c);
public static MediaFile.DeliveryMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static MediaFile.DeliveryMethod getByMethod(java.lang.String method)