package com.dji.sdk.cloudapi.flightarea;
|
|
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/11/21
|
*/
|
public enum GeometryTypeEnum {
|
|
POINT("Point"),
|
|
POLYGON("Polygon"),
|
|
;
|
|
private final String type;
|
|
GeometryTypeEnum(String type) {
|
this.type = type;
|
}
|
|
@JsonValue
|
public String getType() {
|
return type;
|
}
|
|
@JsonCreator
|
public static GeometryTypeEnum find(String type) {
|
return Arrays.stream(values()).filter(typeEnum -> typeEnum.type.equals(type)).findAny()
|
.orElseThrow(() -> new CloudSDKException(GeometryTypeEnum.class, type));
|
}
|
}
|