Package tech.molecules.leet.table.chart
Enum JFreeChartScatterPlot.LASSO_STATE
- java.lang.Object
-
- java.lang.Enum<JFreeChartScatterPlot.LASSO_STATE>
-
- tech.molecules.leet.table.chart.JFreeChartScatterPlot.LASSO_STATE
-
- All Implemented Interfaces:
Serializable,Comparable<JFreeChartScatterPlot.LASSO_STATE>
- Enclosing class:
- JFreeChartScatterPlot
public static enum JFreeChartScatterPlot.LASSO_STATE extends Enum<JFreeChartScatterPlot.LASSO_STATE>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JFreeChartScatterPlot.LASSO_STATEvalueOf(String name)Returns the enum constant of this type with the specified name.static JFreeChartScatterPlot.LASSO_STATE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final JFreeChartScatterPlot.LASSO_STATE NONE
-
DRAGGING
public static final JFreeChartScatterPlot.LASSO_STATE DRAGGING
-
-
Method Detail
-
values
public static JFreeChartScatterPlot.LASSO_STATE[] 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 (JFreeChartScatterPlot.LASSO_STATE c : JFreeChartScatterPlot.LASSO_STATE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JFreeChartScatterPlot.LASSO_STATE 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
-
-