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

cn.allbs.hj212.model.verify.PacketElement Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package cn.allbs.hj212.model.verify;

/**
 * 通信包
 *
 * @author ChenQi
 */
public enum PacketElement {
    HEADER(2),
    DATA_LEN(4),
    DATA(-0),
    DATA_CRC(4),
    FOOTER(2);

    private int len;

    PacketElement(int len) {
        this.len = len;
    }

    public int getLen() {
        return len;
    }

    public void setLen(int len) {
        this.len = len;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy