public static enum LinearAlgebra.SolverFactory extends Enum<LinearAlgebra.SolverFactory>
Enum Constant and Description |
---|
FORWARD_BACK_SUBSTITUTION |
GAUSSIAN |
JACOBI |
LEAST_SQUARES |
SEIDEL |
SMART |
SQUARE_ROOT |
SWEEP |
Modifier and Type | Method and Description |
---|---|
abstract LinearSystemSolver |
create(Matrix matrix) |
static LinearAlgebra.SolverFactory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinearAlgebra.SolverFactory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinearAlgebra.SolverFactory GAUSSIAN
public static final LinearAlgebra.SolverFactory JACOBI
public static final LinearAlgebra.SolverFactory SEIDEL
public static final LinearAlgebra.SolverFactory FORWARD_BACK_SUBSTITUTION
public static final LinearAlgebra.SolverFactory LEAST_SQUARES
public static final LinearAlgebra.SolverFactory SQUARE_ROOT
public static final LinearAlgebra.SolverFactory SWEEP
public static final LinearAlgebra.SolverFactory SMART
public static LinearAlgebra.SolverFactory[] values()
for (LinearAlgebra.SolverFactory c : LinearAlgebra.SolverFactory.values()) System.out.println(c);
public static LinearAlgebra.SolverFactory 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 nullpublic abstract LinearSystemSolver create(Matrix matrix)
Copyright © 2015. All rights reserved.