public enum GlmSolverType extends Enum<GlmSolverType>
| Enum Constant and Description |
|---|
GlmIrls |
GlmIrlsQr |
GlmIrlsSvd |
GlmNaive |
| Modifier and Type | Method and Description |
|---|---|
static GlmSolverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlmSolverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlmSolverType GlmNaive
public static final GlmSolverType GlmIrls
public static final GlmSolverType GlmIrlsQr
public static final GlmSolverType GlmIrlsSvd
public static GlmSolverType[] values()
for (GlmSolverType c : GlmSolverType.values()) System.out.println(c);
public static GlmSolverType 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 © 2017. All rights reserved.