Serializable
, Comparable<OptimizerId>
public enum OptimizerId extends Enum<OptimizerId>
Enum Constant | Description |
---|---|
GAUSS_NEWTON_LU |
Gauss Newton with LU decomposition.
|
GAUSS_NEWTON_QR |
Gauss Newton with QR decomposition.
|
LEVENBERG_MARQUADT |
Levenberg Marquadt.
|
Modifier and Type | Method | Description |
---|---|---|
static OptimizerId |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static OptimizerId[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptimizerId LEVENBERG_MARQUADT
public static final OptimizerId GAUSS_NEWTON_LU
public static final OptimizerId GAUSS_NEWTON_QR
public static OptimizerId[] values()
for (OptimizerId c : OptimizerId.values()) System.out.println(c);
public static OptimizerId valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014-2019 CS Systèmes d'information. All rights reserved.