package CRSDK; @SuppressWarnings("unused") public enum CrFTPJobControlType { CrFTPJobControlType_Add (0x00000001), CrFTPJobControlType_Delete (CrFTPJobControlType_Add.getValue()+1), CrFTPJobControlType_Suspend (CrFTPJobControlType_Add.getValue()+2), CrFTPJobControlType_Resume (CrFTPJobControlType_Add.getValue()+3); private final CrInt32u value; CrFTPJobControlType(int value) { this.value = new CrInt32u(value); } public int getValue() { return value.intValue(); } }