Package org.ojalgo.matrix.decomposition
Enum Eigenvalue.Generalisation
- java.lang.Object
-
- java.lang.Enum<Eigenvalue.Generalisation>
-
- org.ojalgo.matrix.decomposition.Eigenvalue.Generalisation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Eigenvalue.Generalisation>
- Enclosing interface:
- Eigenvalue<N extends java.lang.Comparable<N>>
public static enum Eigenvalue.Generalisation extends java.lang.Enum<Eigenvalue.Generalisation>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Generalisation()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Eigenvalue.Generalisation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Eigenvalue.Generalisation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A_B
public static final Eigenvalue.Generalisation A_B
[A][V]=[B][V][D]
-
AB
public static final Eigenvalue.Generalisation AB
[A][B][V]=[V][D]
-
BA
public static final Eigenvalue.Generalisation BA
[B][A][V]=[V][D]
-
-
Method Detail
-
values
public static Eigenvalue.Generalisation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Eigenvalue.Generalisation c : Eigenvalue.Generalisation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Eigenvalue.Generalisation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-