public static enum FirstOrder.Method extends java.lang.Enum<FirstOrder.Method>
| Enum Constant and Description |
|---|
ANALYTIC
The line search is done analytically.
|
IN_EXACT_LINE_SEARCH
The line search is done using Fletcher's inexact line search method,
Fletcher. |
| Modifier and Type | Method and Description |
|---|---|
static FirstOrder.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FirstOrder.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirstOrder.Method IN_EXACT_LINE_SEARCH
Fletcher.public static final FirstOrder.Method ANALYTIC
public static FirstOrder.Method[] values()
for (FirstOrder.Method c : FirstOrder.Method.values()) System.out.println(c);
public static FirstOrder.Method 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