Package com.leia.sdk.views
Enum CalibrationPattern
- java.lang.Object
-
- java.lang.Enum<CalibrationPattern>
-
- com.leia.sdk.views.CalibrationPattern
-
- All Implemented Interfaces:
Serializable
,Comparable<CalibrationPattern>
public enum CalibrationPattern extends Enum<CalibrationPattern>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CameraAlignment
CameraRectification
CenterViewCircleBars
DOverNBars
GammaBox
None
ThetaLinesRGB
ZonePlate
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CalibrationPattern
valueOf(String name)
Returns the enum constant of this type with the specified name.static CalibrationPattern[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final CalibrationPattern None
-
ZonePlate
public static final CalibrationPattern ZonePlate
-
ThetaLinesRGB
public static final CalibrationPattern ThetaLinesRGB
-
CenterViewCircleBars
public static final CalibrationPattern CenterViewCircleBars
-
DOverNBars
public static final CalibrationPattern DOverNBars
-
CameraAlignment
public static final CalibrationPattern CameraAlignment
-
CameraRectification
public static final CalibrationPattern CameraRectification
-
GammaBox
public static final CalibrationPattern GammaBox
-
-
Method Detail
-
values
public static CalibrationPattern[] 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 (CalibrationPattern c : CalibrationPattern.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CalibrationPattern 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
-
-