Package moa.gui.experimentertab
Enum PlotTab.PlotStyle
- java.lang.Object
-
- java.lang.Enum<PlotTab.PlotStyle>
-
- moa.gui.experimentertab.PlotTab.PlotStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<PlotTab.PlotStyle>
- Enclosing class:
- PlotTab
public static enum PlotTab.PlotStyle extends Enum<PlotTab.PlotStyle>
Plot style
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlotTab.PlotStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static PlotTab.PlotStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINES
public static final PlotTab.PlotStyle LINES
-
POINTS
public static final PlotTab.PlotStyle POINTS
-
LINESPOINTS
public static final PlotTab.PlotStyle LINESPOINTS
-
IMPULSES
public static final PlotTab.PlotStyle IMPULSES
-
STEPS
public static final PlotTab.PlotStyle STEPS
-
FSTEPS
public static final PlotTab.PlotStyle FSTEPS
-
HISTEPS
public static final PlotTab.PlotStyle HISTEPS
-
DOTS
public static final PlotTab.PlotStyle DOTS
-
-
Method Detail
-
values
public static PlotTab.PlotStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlotTab.PlotStyle c : PlotTab.PlotStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlotTab.PlotStyle valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-