blob: 53c614c3c060da1ffcffe4194595964d1f4ff776 [file] [log] [blame]
Dimitrios Mavrommatis96b255a2017-12-06 13:09:25 -08001/**
2 * This class file was automatically generated by jASN1 v1.8.2 (http://www.openmuc.org)
3 */
4
5package org.onosproject.xran.asn1lib.api;
6
7import org.onosproject.xran.asn1lib.ber.types.BerInteger;
8
9import java.math.BigInteger;
10
11
12public class Hysteresis extends BerInteger {
13
14 private static final long serialVersionUID = 1L;
15
16 public Hysteresis() {
17 }
18
19 public Hysteresis(byte[] code) {
20 super(code);
21 }
22
23 public Hysteresis(BigInteger value) {
24 super(value);
25 }
26
27 public Hysteresis(long value) {
28 super(value);
29 }
30
31}