blob: 8dd094d268a7c4787328ee73b897ed6e587687dc [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.BerBitString;
slowr13fa5b02017-08-08 16:32:31 -07008
9import javax.xml.bind.DatatypeConverter;
10import java.util.Arrays;
11
12
13public class EUTRANCellIdentifier extends BerBitString {
14
15 private static final long serialVersionUID = 1L;
16
17 public EUTRANCellIdentifier() {
18 }
19
20 public EUTRANCellIdentifier(byte[] code) {
21 super(code);
22 }
23
24 public EUTRANCellIdentifier(byte[] value, int numBits) {
25 super(value, numBits);
26 }
27
28 @Override
29 public int hashCode() {
30 return Arrays.hashCode(value);
31 }
32
33 @Override
34 public boolean equals(Object obj) {
35 if (obj instanceof EUTRANCellIdentifier) {
36 return Arrays.equals(value, ((EUTRANCellIdentifier) obj).value);
37 }
38 return super.equals(obj);
39 }
slowr13fa5b02017-08-08 16:32:31 -070040}