public static enum NormalizConfig.Algorithm extends java.lang.Enum<NormalizConfig.Algorithm>
Enum Constant and Description |
---|
APPROXIMATION |
DUAL |
PRIMAL |
Modifier and Type | Method and Description |
---|---|
static NormalizConfig.Algorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NormalizConfig.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NormalizConfig.Algorithm PRIMAL
public static final NormalizConfig.Algorithm DUAL
public static final NormalizConfig.Algorithm APPROXIMATION
public static NormalizConfig.Algorithm[] values()
for (NormalizConfig.Algorithm c : NormalizConfig.Algorithm.values()) System.out.println(c);
public static NormalizConfig.Algorithm valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null