package CRSDK; @SuppressWarnings("unused") public enum CrCancelRemoteTouchOperationEnableStatus { CrCancelRemoteTouchOperation_Disable (0x00), CrCancelRemoteTouchOperation_Enable (CrCancelRemoteTouchOperation_Disable.getValue()+1); private final CrInt8u value; CrCancelRemoteTouchOperationEnableStatus(int value) { this.value = new CrInt8u(value); } public int getValue() { return value.intValue(); } }