public static enum NonLinearConjugateGradientOptimizer.Formula extends Enum<NonLinearConjugateGradientOptimizer.Formula>
| Enum Constant and Description | 
|---|
| FLETCHER_REEVESFletcher-Reeves formula. | 
| POLAK_RIBIEREPolak-Ribière formula. | 
| Modifier and Type | Method and Description | 
|---|---|
| static NonLinearConjugateGradientOptimizer.Formula | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static NonLinearConjugateGradientOptimizer.Formula[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final NonLinearConjugateGradientOptimizer.Formula FLETCHER_REEVES
public static final NonLinearConjugateGradientOptimizer.Formula POLAK_RIBIERE
public static NonLinearConjugateGradientOptimizer.Formula[] values()
for (NonLinearConjugateGradientOptimizer.Formula c : NonLinearConjugateGradientOptimizer.Formula.values()) System.out.println(c);
public static NonLinearConjugateGradientOptimizer.Formula 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 © 2016–2020 Hipparchus.org. All rights reserved.