public enum EnumBlendingLUT1TransferFunction extends java.lang.Enum<EnumBlendingLUT1TransferFunction>
| Enum Constant and Description |
|---|
ALPHA_1
The ALPHA_1.
|
ALPHA_2
The ALPHA_2.
|
CONSTANT
The CONSTANT.
|
TABLE
The TABLE.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumBlendingLUT1TransferFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumBlendingLUT1TransferFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumBlendingLUT1TransferFunction CONSTANT
public static final EnumBlendingLUT1TransferFunction ALPHA_1
public static final EnumBlendingLUT1TransferFunction ALPHA_2
public static final EnumBlendingLUT1TransferFunction TABLE
public static EnumBlendingLUT1TransferFunction[] values()
for (EnumBlendingLUT1TransferFunction c : EnumBlendingLUT1TransferFunction.values()) System.out.println(c);
public static EnumBlendingLUT1TransferFunction 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 nullpublic java.lang.String getValue()