11 lines
292 B
Java
11 lines
292 B
Java
package CRSDK;
|
|
|
|
@SuppressWarnings("unused")
|
|
public enum CrPresetPTZFSettingType {
|
|
CrPresetPTZFSettingType_current(0x01);
|
|
|
|
private final CrInt8u value;
|
|
CrPresetPTZFSettingType(int value) { this.value = new CrInt8u(value); }
|
|
public int getValue() { return value.intValue(); }
|
|
}
|