Files
SonyCameraRemoteSDK/src/CRSDK/CrLensInformationEnableStatus.java
2025-07-15 16:09:06 +07:00

16 lines
394 B
Java

package CRSDK;
@SuppressWarnings("unused")
public enum CrLensInformationEnableStatus {
CrLensInformation_Disable (0x00),
CrLensInformation_Enable (CrLensInformation_Disable.getValue()+1);
private final CrInt8u value;
CrLensInformationEnableStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}