hxb
2024-10-24 ce88de4891b87c3b7b2750575e15d6e48d518852
HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/type/GatewayType.java
New file
@@ -0,0 +1,24 @@
package com.hdl.linkpm.sdk.home.type;
import androidx.annotation.StringDef;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.SOURCE;
/**
 * Created by jlchen on 12/10/21.
 * 网关类型
 */
@Retention(SOURCE)
@StringDef({GatewayType.BUSUDPGATEWAY, GatewayType.AGATEWAY, GatewayType.ZIGBEEGATEWAY, GatewayType.KNXGATEWAY})
public @interface GatewayType {
    String BUSUDPGATEWAY = "BUSUDPGATEWAY";
    String AGATEWAY = "AGATEWAY";
    String ZIGBEEGATEWAY = "ZIGBEEGATEWAY";
    String KNXGATEWAY = "KNXGATEWAY";
}