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.4
|
* @date 2023/3/3
|
*/
|
public enum CameraTypeEnum {
|
|
ZOOM("zoom"),
|
|
WIDE("wide"),
|
|
IR("ir");
|
|
private final String type;
|
|
CameraTypeEnum(String type) {
|
this.type = type;
|
}
|
|
@JsonValue
|
public String getType() {
|
return type;
|
}
|
|
@JsonCreator
|
public static CameraTypeEnum find(String type) {
|
return Arrays.stream(values()).filter(typeEnum -> typeEnum.type.equals(type)).findAny()
|
.orElseThrow(() -> new CloudSDKException(CameraTypeEnum.class, type));
|
}
|
}
|