public static enum EXRSimpleImage.Channels extends Enum<EXRSimpleImage.Channels>
Enum Constant and Description |
---|
RGB
Interleaved RGB (Red-Green-Blue).
|
RGBA
Interleaved RGBA (Red-Green-Blue-Alpha).
|
Y
Single channel luminance
|
Modifier and Type | Method and Description |
---|---|
int |
getNumChannels()
Returns the number of floating point channels
|
static EXRSimpleImage.Channels |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EXRSimpleImage.Channels[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EXRSimpleImage.Channels RGB
public static final EXRSimpleImage.Channels RGBA
public static final EXRSimpleImage.Channels Y
public static EXRSimpleImage.Channels[] values()
for (EXRSimpleImage.Channels c : EXRSimpleImage.Channels.values()) System.out.println(c);
public static EXRSimpleImage.Channels 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 int getNumChannels()