Enum SoEigenDecompositionProcessing3d.OutputSelections
- java.lang.Object
-
- java.lang.Enum<SoEigenDecompositionProcessing3d.OutputSelections>
-
- com.openinventor.imageviz.engines.arithmeticandlogic.arithmeticoperations.SoEigenDecompositionProcessing3d.OutputSelections
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoEigenDecompositionProcessing3d.OutputSelections>
- Enclosing class:
- SoEigenDecompositionProcessing3d
public static enum SoEigenDecompositionProcessing3d.OutputSelections extends java.lang.Enum<SoEigenDecompositionProcessing3d.OutputSelections> implements IntegerValuedEnum
This enum defines the different outputs that can be selected.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EIGEN_VALUES
Enable the computation of eigenvalues (from the largest to the smallest).EIGEN_VECTOR_1
Enable the computation of the first eigenvector (the largest value).EIGEN_VECTOR_2
Enable the computation of the second eigenvector (the medium value).EIGEN_VECTOR_3
Enable the computation of the third eigenvector (the smallest value).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Returns the integer value of the enum constant.static SoEigenDecompositionProcessing3d.OutputSelections
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoEigenDecompositionProcessing3d.OutputSelections
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoEigenDecompositionProcessing3d.OutputSelections[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EIGEN_VECTOR_1
public static final SoEigenDecompositionProcessing3d.OutputSelections EIGEN_VECTOR_1
Enable the computation of the first eigenvector (the largest value).
-
EIGEN_VECTOR_2
public static final SoEigenDecompositionProcessing3d.OutputSelections EIGEN_VECTOR_2
Enable the computation of the second eigenvector (the medium value).
-
EIGEN_VECTOR_3
public static final SoEigenDecompositionProcessing3d.OutputSelections EIGEN_VECTOR_3
Enable the computation of the third eigenvector (the smallest value).
-
EIGEN_VALUES
public static final SoEigenDecompositionProcessing3d.OutputSelections EIGEN_VALUES
Enable the computation of eigenvalues (from the largest to the smallest).
-
-
Method Detail
-
values
public static SoEigenDecompositionProcessing3d.OutputSelections[] 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 (SoEigenDecompositionProcessing3d.OutputSelections c : SoEigenDecompositionProcessing3d.OutputSelections.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoEigenDecompositionProcessing3d.OutputSelections 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
-
valueOf
public static SoEigenDecompositionProcessing3d.OutputSelections valueOf(int val)
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()
Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-
-