Package one.microstream.math
Enum Matrix.IterationMode
- java.lang.Object
-
- java.lang.Enum<Matrix.IterationMode>
-
- one.microstream.math.Matrix.IterationMode
-
- All Implemented Interfaces:
Serializable
,Comparable<Matrix.IterationMode>
,java.lang.constant.Constable
public static enum Matrix.IterationMode extends Enum<Matrix.IterationMode>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOM_LEFT
BOTTOM_RIGHT
TOP_LEFT
TOP_RIGHT
-
Method Summary
Modifier and Type Method Description static Matrix.IterationMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Matrix.IterationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_LEFT
public static final Matrix.IterationMode TOP_LEFT
-
TOP_RIGHT
public static final Matrix.IterationMode TOP_RIGHT
-
BOTTOM_LEFT
public static final Matrix.IterationMode BOTTOM_LEFT
-
BOTTOM_RIGHT
public static final Matrix.IterationMode BOTTOM_RIGHT
-
-
Method Detail
-
values
public static Matrix.IterationMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Matrix.IterationMode valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-