Files
SonyCameraRemoteSDK/src/CRSDK/CrPresetPTZFSettingType.java
2025-07-25 11:12:52 +07:00

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(); }
}