public static enum MediaSegmentDecrypter.Type extends java.lang.Enum<MediaSegmentDecrypter.Type>
Enum Constant and Description |
---|
HLS
HLS with AES or BBTS decrypter type.
|
MP4_CENC
MP4 container format, CENC decrypter type.
|
Modifier and Type | Method and Description |
---|---|
static MediaSegmentDecrypter.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaSegmentDecrypter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaSegmentDecrypter.Type HLS
public static final MediaSegmentDecrypter.Type MP4_CENC
public static MediaSegmentDecrypter.Type[] values()
for (MediaSegmentDecrypter.Type c : MediaSegmentDecrypter.Type.values()) System.out.println(c);
public static MediaSegmentDecrypter.Type 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