org.openmuc.jdlms.internal.asn1.cosem.Integer8 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdlms Show documentation
Show all versions of jdlms Show documentation
jDLMS is a library implementing the DLMS/COSEM (IEC 62056) communication standard.
/**
* This class file was automatically generated by the AXDR compiler that is part of jDLMS (http://www.openmuc.org)
*/
package org.openmuc.jdlms.internal.asn1.cosem;
import org.openmuc.jdlms.internal.asn1.axdr.types.AxdrInteger;
public class Integer8 extends AxdrInteger {
public Integer8() {
super(-128, 127, -128);
}
public Integer8(byte[] code) {
super(-128, 127, -128);
this.code = code;
}
public Integer8(long val) {
super(-128, 127, val);
}
}