12 lines
398 B
Java
12 lines
398 B
Java
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(); }
|
|
}
|