public static enum MediaFile.ProtectionType extends java.lang.Enum<MediaFile.ProtectionType>
Enum Constant and Description |
---|
BBTS |
CBCS |
CENC |
CLEAR_TEXT |
DCF |
HLS_AES |
PDCF |
PIFF |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static MediaFile.ProtectionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaFile.ProtectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaFile.ProtectionType UNKNOWN
public static final MediaFile.ProtectionType CLEAR_TEXT
public static final MediaFile.ProtectionType DCF
public static final MediaFile.ProtectionType PDCF
public static final MediaFile.ProtectionType PIFF
public static final MediaFile.ProtectionType BBTS
public static final MediaFile.ProtectionType CENC
public static final MediaFile.ProtectionType HLS_AES
public static final MediaFile.ProtectionType CBCS
public static MediaFile.ProtectionType[] values()
for (MediaFile.ProtectionType c : MediaFile.ProtectionType.values()) System.out.println(c);
public static MediaFile.ProtectionType 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