Files
SonyCameraRemoteSDK/src/CRSDK/CrFTPAutoTransferTargetStill.java
2025-07-25 10:20:57 +07:00

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(); }
}