public static enum Plot.PlotStyle extends java.lang.Enum<Plot.PlotStyle>
Enum Constant and Description |
---|
BAR
Each value is represented by a (thick) vertical bar
|
CIRCLE |
CROSS
Each value is represented by a cross or X
|
LINE
A line plot...
|
POINT
Each value is represented by a circular point
|
RECT
Each value is represented by a rectangle of size "value"
|
RECT_VALUE_FILLED
Same as RECT but size is fixed and color is determined by "value"
|
STAIR
Each value is connected to the next by two rectangular lines
|
STAR
Each value is represented by a star
|
STEM
Each value is represented by a vertical line and an X at the top
|
TEXT
The most recent y-value of the plot is represented by a text
|
Modifier and Type | Method and Description |
---|---|
static Plot.PlotStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Plot.PlotStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plot.PlotStyle POINT
public static final Plot.PlotStyle CIRCLE
public static final Plot.PlotStyle RECT
public static final Plot.PlotStyle RECT_VALUE_FILLED
public static final Plot.PlotStyle LINE
public static final Plot.PlotStyle STAIR
public static final Plot.PlotStyle BAR
public static final Plot.PlotStyle STEM
public static final Plot.PlotStyle CROSS
public static final Plot.PlotStyle STAR
public static final Plot.PlotStyle TEXT
public static Plot.PlotStyle[] values()
for (Plot.PlotStyle c : Plot.PlotStyle.values()) System.out.println(c);
public static Plot.PlotStyle 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