15 lines
336 B
Java
15 lines
336 B
Java
package CRSDK;
|
|
|
|
@SuppressWarnings("unused")
|
|
public enum CrPictureProfileKneeSetPoint {
|
|
CrPictureProfileKneeSetPoint_Invalid (0x0000);
|
|
|
|
private final CrInt16u value;
|
|
CrPictureProfileKneeSetPoint(int value) {
|
|
this.value = new CrInt16u(value);
|
|
}
|
|
public int getValue() {
|
|
return value.intValue();
|
|
}
|
|
}
|