commit 18/07/2025
This commit is contained in:
16
src/CRSDK/CrPictureProfileBlackGammaRange.java
Normal file
16
src/CRSDK/CrPictureProfileBlackGammaRange.java
Normal file
@@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user