blob: f34b2016ae0e38cea3f6455000a35969ef6b91fb [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 RSRQRange extends BerInteger {
13
14 private static final long serialVersionUID = 1L;
15
16 public RSRQRange() {
17 }
18
19 public RSRQRange(byte[] code) {
20 super(code);
21 }
22
23 public RSRQRange(BigInteger value) {
24 super(value);
25 }
26
27 public RSRQRange(long value) {
28 super(value);
29 }
30
31}