package com.dji.sdk.cloudapi.device;
|
|
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.7
|
* @date 2023/6/30
|
*/
|
public enum NetworkStateTypeEnum {
|
|
FOURTH_GENERATION(1),
|
|
ETHERNET(2),
|
;
|
|
private final int type;
|
|
NetworkStateTypeEnum(int type) {
|
this.type = type;
|
}
|
|
@JsonValue
|
public int getType() {
|
return type;
|
}
|
|
@JsonCreator
|
public static NetworkStateTypeEnum find(int type) {
|
return Arrays.stream(values()).filter(typeEnum -> typeEnum.type == type).findAny()
|
.orElseThrow(() -> new CloudSDKException(NetworkStateTypeEnum.class, type));
|
}
|
|
}
|