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