New file |
| | |
| | | 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";
|
| | |
|
| | | } |