Package adams.flow.sink.sequenceplotter
Enum SimpleErrorPaintlet.PlotType
- java.lang.Object
-
- java.lang.Enum<SimpleErrorPaintlet.PlotType>
-
- adams.flow.sink.sequenceplotter.SimpleErrorPaintlet.PlotType
-
- All Implemented Interfaces:
Serializable
,Comparable<SimpleErrorPaintlet.PlotType>
- Enclosing class:
- SimpleErrorPaintlet
public static enum SimpleErrorPaintlet.PlotType extends Enum<SimpleErrorPaintlet.PlotType>
how to paint the errors.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimpleErrorPaintlet.PlotType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SimpleErrorPaintlet.PlotType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINE
public static final SimpleErrorPaintlet.PlotType LINE
simple line.
-
BAR
public static final SimpleErrorPaintlet.PlotType BAR
bars (with markers at end).
-
BOX
public static final SimpleErrorPaintlet.PlotType BOX
boxes (if x and y error available).
-
-
Method Detail
-
values
public static SimpleErrorPaintlet.PlotType[] 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 (SimpleErrorPaintlet.PlotType c : SimpleErrorPaintlet.PlotType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleErrorPaintlet.PlotType 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
-
-