public static enum MediaInfo.EncryptionMethod extends java.lang.Enum<MediaInfo.EncryptionMethod>
| Enum Constant and Description |
|---|
AES_128_CBC |
AES_128_CTR |
NULL |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static MediaInfo.EncryptionMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaInfo.EncryptionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaInfo.EncryptionMethod UNKNOWN
public static final MediaInfo.EncryptionMethod NULL
public static final MediaInfo.EncryptionMethod AES_128_CBC
public static final MediaInfo.EncryptionMethod AES_128_CTR
public static MediaInfo.EncryptionMethod[] values()
for (MediaInfo.EncryptionMethod c : MediaInfo.EncryptionMethod.values()) System.out.println(c);
public static MediaInfo.EncryptionMethod 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 null