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