public enum ConfigurableRenderOptions extends Enum<ConfigurableRenderOptions>
ConfigurableRendererMono
and
ConfigurableRendererRGB
classes.Enum Constant and Description |
---|
AXIS
Render principle axes
|
BLOB
Render blobs
|
BORDER
Render component boundaries
|
CENTROID
Render component centroid
|
CH_AXIS
Render principle axes (alternate colour)
|
CH_BLOB
Render blobs (alternate colour)
|
CH_BORDER
Render component boundaries (alternate colour
|
CH_CENTROID
Render centroid (alternate colour)
|
Modifier and Type | Method and Description |
---|---|
static ConfigurableRenderOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurableRenderOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurableRenderOptions BLOB
public static final ConfigurableRenderOptions BORDER
public static final ConfigurableRenderOptions AXIS
public static final ConfigurableRenderOptions CENTROID
public static final ConfigurableRenderOptions CH_BLOB
public static final ConfigurableRenderOptions CH_BORDER
public static final ConfigurableRenderOptions CH_AXIS
public static final ConfigurableRenderOptions CH_CENTROID
public static ConfigurableRenderOptions[] values()
for (ConfigurableRenderOptions c : ConfigurableRenderOptions.values()) System.out.println(c);
public static ConfigurableRenderOptions 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 null