com.dahuatech.icc.brm.enums.DeviceLargeAmountSupportEnum 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!
package com.dahuatech.icc.brm.enums;
/**
* 设备大路数消息订阅优化
*/
public enum DeviceLargeAmountSupportEnum {
//全部不支持
ALL_NO_SUPPORT(0),
//部分支持
PART_SUPPORT(1),
//全部支持
ALL_SUPPORT(2);
private Integer value;
DeviceLargeAmountSupportEnum(Integer value) {
this.value = value;
}
public Integer getValue() {
return value;
}
}