blob: ae2d40c850d93bbbe275ade393d4df847fa6906a [file] [log] [blame]
slowr13fa5b02017-08-08 16:32:31 -07001/**
2 * This class file was automatically generated by jASN1 v1.8.0 (http://www.openmuc.org)
3 */
4
5package org.onosproject.xran.codecs.api;
6
slowr60d4d102017-08-16 18:33:58 -07007import org.onosproject.xran.codecs.ber.types.BerEnum;
slowr13fa5b02017-08-08 16:32:31 -07008
9import java.math.BigInteger;
10
11
12public class DuplexMode extends BerEnum {
13
14 private static final long serialVersionUID = 1L;
15
16 public DuplexMode() {
17 }
18
19 public DuplexMode(byte[] code) {
20 super(code);
21 }
22
23 public DuplexMode(BigInteger value) {
24 super(value);
25 }
26
27 public DuplexMode(long value) {
28 super(value);
29 }
30
31}