package CRSDK; @SuppressWarnings("unused") public enum CrShootingEnableSettingLicense { CrShootingEnableSettingLicense_Enable(0x01), CrShootingEnableSettingLicense_Disable(CrShootingEnableSettingLicense_Enable.getValue() + 1); private final CrInt8u value; CrShootingEnableSettingLicense(int value) { this.value = new CrInt8u(value); } public int getValue() { return value.intValue(); } }