public static enum ColorMapper.Mode extends Enum<ColorMapper.Mode>
Enum Constant and Description |
---|
CIRCULAR
Repeat the data.
|
OMIT
Ignore missing values.
|
REPEAT
Repeat the last value.
|
Modifier and Type | Method and Description |
---|---|
static ColorMapper.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorMapper.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorMapper.Mode OMIT
public static final ColorMapper.Mode REPEAT
public static final ColorMapper.Mode CIRCULAR
public static ColorMapper.Mode[] values()
for (ColorMapper.Mode c : ColorMapper.Mode.values()) System.out.println(c);
public static ColorMapper.Mode 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 nullCopyright © 2009-2013. All Rights Reserved.