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.
26 lines
598 B
26 lines
598 B
package com.dji.sdk.annotations; |
|
|
|
import com.dji.sdk.config.version.CloudSDKVersionEnum; |
|
import com.dji.sdk.config.version.GatewayTypeEnum; |
|
|
|
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 {}; |
|
|
|
}
|
|
|