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