public static enum AbstractOptimizer.LineSearchMethod extends java.lang.Enum<AbstractOptimizer.LineSearchMethod>
| Enum Constant and Description |
|---|
SINGLE_TRIAL |
TEN_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Number |
getParameter() |
static AbstractOptimizer.LineSearchMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractOptimizer.LineSearchMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractOptimizer.LineSearchMethod TEN_EQUAL
public static final AbstractOptimizer.LineSearchMethod SINGLE_TRIAL
public static AbstractOptimizer.LineSearchMethod[] values()
for (AbstractOptimizer.LineSearchMethod c : AbstractOptimizer.LineSearchMethod.values()) System.out.println(c);
public static AbstractOptimizer.LineSearchMethod 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 nullpublic java.lang.Number getParameter()