Package elki.math.linearalgebra
Enum ConstrainedQuadraticProblemSolver.DimensionState
- java.lang.Object
-
- java.lang.Enum<ConstrainedQuadraticProblemSolver.DimensionState>
-
- elki.math.linearalgebra.ConstrainedQuadraticProblemSolver.DimensionState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ConstrainedQuadraticProblemSolver.DimensionState>
- Enclosing class:
- ConstrainedQuadraticProblemSolver
private static enum ConstrainedQuadraticProblemSolver.DimensionState extends java.lang.Enum<ConstrainedQuadraticProblemSolver.DimensionState>
Describes the calculation state of a Dimension
-
-
Constructor Summary
Constructors Modifier Constructor Description private
DimensionState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConstrainedQuadraticProblemSolver.DimensionState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ConstrainedQuadraticProblemSolver.DimensionState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOLIM
public static final ConstrainedQuadraticProblemSolver.DimensionState LOLIM
-
UPLIM
public static final ConstrainedQuadraticProblemSolver.DimensionState UPLIM
-
UNCONSTR
public static final ConstrainedQuadraticProblemSolver.DimensionState UNCONSTR
-
CONSTR
public static final ConstrainedQuadraticProblemSolver.DimensionState CONSTR
-
-
Method Detail
-
values
public static ConstrainedQuadraticProblemSolver.DimensionState[] 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 (ConstrainedQuadraticProblemSolver.DimensionState c : ConstrainedQuadraticProblemSolver.DimensionState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConstrainedQuadraticProblemSolver.DimensionState valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-