Package adams.flow.sink
Enum ActualVsPredictedPlot.LimitType
- java.lang.Object
-
- java.lang.Enum<ActualVsPredictedPlot.LimitType>
-
- adams.flow.sink.ActualVsPredictedPlot.LimitType
-
- All Implemented Interfaces:
Serializable
,Comparable<ActualVsPredictedPlot.LimitType>
- Enclosing class:
- ActualVsPredictedPlot
public static enum ActualVsPredictedPlot.LimitType extends Enum<ActualVsPredictedPlot.LimitType>
Determines what limits to use on the axes.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActualVsPredictedPlot.LimitType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActualVsPredictedPlot.LimitType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ActualVsPredictedPlot.LimitType NONE
-
ACTUAL
public static final ActualVsPredictedPlot.LimitType ACTUAL
-
SPECIFIED
public static final ActualVsPredictedPlot.LimitType SPECIFIED
-
-
Method Detail
-
values
public static ActualVsPredictedPlot.LimitType[] 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 (ActualVsPredictedPlot.LimitType c : ActualVsPredictedPlot.LimitType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActualVsPredictedPlot.LimitType 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
-
-