Package moa.gui.experimentertab
Enum PlotTab.Terminal
- java.lang.Object
-
- java.lang.Enum<PlotTab.Terminal>
-
- moa.gui.experimentertab.PlotTab.Terminal
-
- All Implemented Interfaces:
Serializable
,Comparable<PlotTab.Terminal>
- Enclosing class:
- PlotTab
public static enum PlotTab.Terminal extends Enum<PlotTab.Terminal>
Terminal
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlotTab.Terminal
valueOf(String name)
Returns the enum constant of this type with the specified name.static PlotTab.Terminal[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANVAS
public static final PlotTab.Terminal CANVAS
-
EPSLATEX
public static final PlotTab.Terminal EPSLATEX
-
GIF
public static final PlotTab.Terminal GIF
-
JPEG
public static final PlotTab.Terminal JPEG
-
LATEX
public static final PlotTab.Terminal LATEX
-
PDFCAIRO
public static final PlotTab.Terminal PDFCAIRO
-
PNG
public static final PlotTab.Terminal PNG
-
POSTSCRIPT
public static final PlotTab.Terminal POSTSCRIPT
-
POSTSCRIPT_COLOR
public static final PlotTab.Terminal POSTSCRIPT_COLOR
-
PSLATEX
public static final PlotTab.Terminal PSLATEX
-
PSTEX
public static final PlotTab.Terminal PSTEX
-
PSTRICKS
public static final PlotTab.Terminal PSTRICKS
-
SVG
public static final PlotTab.Terminal SVG
-
-
Method Detail
-
values
public static PlotTab.Terminal[] 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.Terminal c : PlotTab.Terminal.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.Terminal 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
-
-