Enum SoBinaryCorrelationProcessing2d.OffsetModes
- java.lang.Object
-
- java.lang.Enum<SoBinaryCorrelationProcessing2d.OffsetModes>
-
- com.openinventor.imageviz.engines.geometryandmatching.patternrecognition.SoBinaryCorrelationProcessing2d.OffsetModes
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoBinaryCorrelationProcessing2d.OffsetModes>
- Enclosing class:
- SoBinaryCorrelationProcessing2d
public static enum SoBinaryCorrelationProcessing2d.OffsetModes extends java.lang.Enum<SoBinaryCorrelationProcessing2d.OffsetModes> implements IntegerValuedEnum
See Correlation.
-
-
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 SoBinaryCorrelationProcessing2d.OffsetModes
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoBinaryCorrelationProcessing2d.OffsetModes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoBinaryCorrelationProcessing2d.OffsetModes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFFSET_1
public static final SoBinaryCorrelationProcessing2d.OffsetModes OFFSET_1
step of 1
-
OFFSET_2
public static final SoBinaryCorrelationProcessing2d.OffsetModes OFFSET_2
step of 2
-
OFFSET_4
public static final SoBinaryCorrelationProcessing2d.OffsetModes OFFSET_4
step of 4
-
OFFSET_8
public static final SoBinaryCorrelationProcessing2d.OffsetModes OFFSET_8
step of 8
-
-
Method Detail
-
values
public static SoBinaryCorrelationProcessing2d.OffsetModes[] 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 (SoBinaryCorrelationProcessing2d.OffsetModes c : SoBinaryCorrelationProcessing2d.OffsetModes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoBinaryCorrelationProcessing2d.OffsetModes 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 SoBinaryCorrelationProcessing2d.OffsetModes 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.
-
-