You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
598 B
27 lines
598 B
2 years ago
|
package com.dji.sdk.annotations;
|
||
|
|
||
1 year ago
|
import com.dji.sdk.config.version.CloudSDKVersionEnum;
|
||
|
import com.dji.sdk.config.version.GatewayTypeEnum;
|
||
2 years ago
|
|
||
|
import java.lang.annotation.*;
|
||
|
|
||
|
/**
|
||
|
* @author sean
|
||
|
* @version 1.7
|
||
|
* @date 2023/5/22
|
||
|
*/
|
||
|
@Documented
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@Target({ElementType.FIELD, ElementType.METHOD})
|
||
|
public @interface CloudSDKVersion {
|
||
|
|
||
|
CloudSDKVersionEnum since() default CloudSDKVersionEnum.V0_0_1;
|
||
|
|
||
|
CloudSDKVersionEnum deprecated() default CloudSDKVersionEnum.V99;
|
||
|
|
||
|
GatewayTypeEnum[] include() default {};
|
||
|
|
||
|
GatewayTypeEnum[] exclude() default {};
|
||
|
|
||
|
}
|