commit 24/07/2025
This commit is contained in:
17
src/CRSDK/CrFTPJobControlType.java
Normal file
17
src/CRSDK/CrFTPJobControlType.java
Normal file
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user