public static enum VideoInformation.HdrType extends Enum<VideoInformation.HdrType>
| Enum Constant and Description |
|---|
DV
Dolby Vision
|
HDR
High Dynamic Range
|
SDR
Standard Dynamic Range
|
| Modifier and Type | Method and Description |
|---|---|
static VideoInformation.HdrType |
typeOf(String hdrType)
Parses the specified string and returns the corresponding
VideoInformation.HdrType, or null if no match could be found. |
static VideoInformation.HdrType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoInformation.HdrType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoInformation.HdrType SDR
public static final VideoInformation.HdrType HDR
public static final VideoInformation.HdrType DV
public static VideoInformation.HdrType[] values()
for (VideoInformation.HdrType c : VideoInformation.HdrType.values()) System.out.println(c);
public static VideoInformation.HdrType 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 null@Nullable public static VideoInformation.HdrType typeOf(String hdrType)
VideoInformation.HdrType, or null if no match could be found.hdrType - the string to parse.VideoInformation.HdrType or null.Copyright © 2022. All rights reserved.