16 lines
415 B
Java
16 lines
415 B
Java
package CRSDK;
|
|
|
|
@SuppressWarnings("unused")
|
|
public enum CrLensCompensationDistortion {
|
|
CrLensCompensationDistortion_Off (0x01),
|
|
CrLensCompensationDistortion_Auto (CrLensCompensationDistortion_Off.getValue()+1);
|
|
|
|
private final CrInt8u value;
|
|
CrLensCompensationDistortion(int value) {
|
|
this.value = new CrInt8u(value);
|
|
}
|
|
public int getValue() {
|
|
return value.intValue();
|
|
}
|
|
}
|