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