All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.icc.brm.enums.EventCenterMessageCategory Maven / Gradle / Ivy

The newest version!
/*
 *
 *   *********************** 版权声明 ***********************************
 *
 *   版权所有:浙江大华技术股份有限公司
 *   ©CopyRight DahuaTech 2019
 *
 *   *******************************************************************
 *
 */

package com.dahuatech.icc.brm.enums;

/**
 * 事件中心消息大类
 **/
public enum EventCenterMessageCategory {
    //设备状态
    STATE("state");

    private String category;

    EventCenterMessageCategory(String category) {
        this.category = category;
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }

    public boolean eq(String category){
        return this.category.equals(category);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy