public static enum PlotWindow.PlotType extends java.lang.Enum<PlotWindow.PlotType>
enums indicate the available plot types.
SIMPLE = single plot, 1 or more columns. MULTI = multiple plots placed vertically in a single window, one plot for each column. CORRELATION = single (scatter) plot, 2 columns.
PlotWindow| Enum Constant and Description |
|---|
CORRELATION |
MULTI |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static PlotWindow.PlotType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlotWindow.PlotType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlotWindow.PlotType SIMPLE
public static final PlotWindow.PlotType MULTI
public static final PlotWindow.PlotType CORRELATION
public static PlotWindow.PlotType[] values()
for (PlotWindow.PlotType c : PlotWindow.PlotType.values()) System.out.println(c);
public static PlotWindow.PlotType 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