package com.dji.sdk.cloudapi.control;
|
|
import com.dji.sdk.exception.CloudSDKException;
|
import com.fasterxml.jackson.annotation.JsonCreator;
|
import com.fasterxml.jackson.annotation.JsonValue;
|
|
import java.util.Arrays;
|
|
/**
|
* @author sean
|
* @version 1.9
|
* @date 2023/12/12
|
*/
|
public enum ExposureCameraTypeEnum {
|
|
ZOOM("zoom"),
|
|
WIDE("wide");
|
|
private final String type;
|
|
ExposureCameraTypeEnum(String type) {
|
this.type = type;
|
}
|
|
@JsonValue
|
public String getType() {
|
return type;
|
}
|
|
@JsonCreator
|
public static ExposureCameraTypeEnum find(String type) {
|
return Arrays.stream(values()).filter(typeEnum -> typeEnum.type.equals(type)).findAny()
|
.orElseThrow(() -> new CloudSDKException(ExposureCameraTypeEnum.class, type));
|
}
|
}
|