com.dahuatech.icc.brm.enums.SyncChannelStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-brm Show documentation
Show all versions of java-sdk-brm Show documentation
Dahua ICC Open API SDK for Java
The newest version!
/*
*
* *********************** 版权声明 ***********************************
*
* 版权所有:浙江大华技术股份有限公司
* ©CopyRight DahuaTech 2019
*
* *******************************************************************
*
*/
package com.dahuatech.icc.brm.enums;
public enum SyncChannelStatus {
//设备状态同步到设备下通道
TRUE(1);
private Integer value;
SyncChannelStatus(Integer value) {
this.value = value;
}
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
public static boolean syncChannel(Integer value){
return TRUE.value.equals(value);
}
}