Package adams.flow.control
Enum PlotContainerUpdater.PlotContainerValue
- java.lang.Object
-
- java.lang.Enum<PlotContainerUpdater.PlotContainerValue>
-
- adams.flow.control.PlotContainerUpdater.PlotContainerValue
-
- All Implemented Interfaces:
Serializable
,Comparable<PlotContainerUpdater.PlotContainerValue>
- Enclosing class:
- PlotContainerUpdater
public static enum PlotContainerUpdater.PlotContainerValue extends Enum<PlotContainerUpdater.PlotContainerValue>
The values of the plot container that can be modified.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description META_DATA
meta-data.PLOT_NAME
the name of the container.X_ERROR_VALUE
the X error value.X_VALUE
the X value.Y_ERROR_VALUE
the Y error value.Y_VALUE
the Y value.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlotContainerUpdater.PlotContainerValue
valueOf(String name)
Returns the enum constant of this type with the specified name.static PlotContainerUpdater.PlotContainerValue[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLOT_NAME
public static final PlotContainerUpdater.PlotContainerValue PLOT_NAME
the name of the container.
-
X_VALUE
public static final PlotContainerUpdater.PlotContainerValue X_VALUE
the X value.
-
Y_VALUE
public static final PlotContainerUpdater.PlotContainerValue Y_VALUE
the Y value.
-
X_ERROR_VALUE
public static final PlotContainerUpdater.PlotContainerValue X_ERROR_VALUE
the X error value.
-
Y_ERROR_VALUE
public static final PlotContainerUpdater.PlotContainerValue Y_ERROR_VALUE
the Y error value.
-
META_DATA
public static final PlotContainerUpdater.PlotContainerValue META_DATA
meta-data.
-
-
Method Detail
-
values
public static PlotContainerUpdater.PlotContainerValue[] 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 (PlotContainerUpdater.PlotContainerValue c : PlotContainerUpdater.PlotContainerValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlotContainerUpdater.PlotContainerValue 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
-
-