Files
SonyCameraRemoteSDK/src/CRSDK/CrPictureProfileBlackGammaRange.java
2025-07-18 15:52:50 +07:00

17 lines
530 B
Java

package CRSDK;
@SuppressWarnings("unused")
public enum CrPictureProfileBlackGammaRange {
CrPictureProfileBlackGammaRange_Wide (0x01),
CrPictureProfileBlackGammaRange_Middle (CrPictureProfileBlackGammaRange_Wide.getValue()+1),
CrPictureProfileBlackGammaRange_Narrow (CrPictureProfileBlackGammaRange_Wide.getValue()+2);
private final CrInt8u value;
CrPictureProfileBlackGammaRange(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}