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