Files
SonyCameraRemoteSDK/src/CRSDK/CrPropertyLiveViewImageQuality.java
2025-07-15 15:01:48 +07:00

16 lines
377 B
Java

package CRSDK;
@SuppressWarnings("unused")
public enum CrPropertyLiveViewImageQuality {
CrPropertyLiveViewImageQuality_Low(0),
CrPropertyLiveViewImageQuality_High (1);
private final CrInt16u value;
CrPropertyLiveViewImageQuality(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}