public enum RangeSeriesStrokeMode extends Enum<RangeSeriesStrokeMode>
RangeSeriesStrokeMode
shape is outlined.Enum Constant and Description |
---|
HIGH_POINTS
The path segment will have a stroke along the High values.
|
LOW_AND_HIGH_POINTS
The path segment will have a stroke along the low and high values.
|
LOW_POINTS
The path segment will have a stroke along the low values.
|
NONE
No outlining.
|
Modifier and Type | Method and Description |
---|---|
static RangeSeriesStrokeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeSeriesStrokeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeSeriesStrokeMode NONE
public static final RangeSeriesStrokeMode LOW_POINTS
public static final RangeSeriesStrokeMode HIGH_POINTS
public static final RangeSeriesStrokeMode LOW_AND_HIGH_POINTS
public static RangeSeriesStrokeMode[] values()
for (RangeSeriesStrokeMode c : RangeSeriesStrokeMode.values()) System.out.println(c);
public static RangeSeriesStrokeMode 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