public static enum TransferFunction.Type extends java.lang.Enum<TransferFunction.Type>
Enum Constant and Description |
---|
CT |
INVALID |
RGB |
VORTICITY_MAGNITUDE |
Modifier and Type | Method and Description |
---|---|
static TransferFunction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransferFunction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferFunction.Type INVALID
public static final TransferFunction.Type RGB
public static final TransferFunction.Type CT
public static final TransferFunction.Type VORTICITY_MAGNITUDE
public static TransferFunction.Type[] values()
for (TransferFunction.Type c : TransferFunction.Type.values()) System.out.println(c);
public static TransferFunction.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null