@Generated(value="software.amazon.awssdk:codegen") public enum Colorimetry extends Enum<Colorimetry>
| Enum Constant and Description |
|---|
BT2020 |
BT2100 |
BT601 |
BT709 |
ST2065_1 |
ST2065_3 |
UNKNOWN_TO_SDK_VERSION |
XYZ |
| Modifier and Type | Method and Description |
|---|---|
static Colorimetry |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<Colorimetry> |
knownValues()
|
String |
toString() |
static Colorimetry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Colorimetry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Colorimetry BT601
public static final Colorimetry BT709
public static final Colorimetry BT2020
public static final Colorimetry BT2100
public static final Colorimetry ST2065_1
public static final Colorimetry ST2065_3
public static final Colorimetry XYZ
public static final Colorimetry UNKNOWN_TO_SDK_VERSION
public static Colorimetry[] values()
for (Colorimetry c : Colorimetry.values()) System.out.println(c);
public static Colorimetry 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 nullpublic String toString()
toString in class Enum<Colorimetry>public static Colorimetry fromValue(String value)
value - real valuepublic static Set<Colorimetry> knownValues()
values() to return a Set of all values known to the SDK. This will return
all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known ColorimetrysCopyright © 2023. All rights reserved.