blob: 7c7f2a2894646dbcaa45bfd95e2af84c3014566a [file] [log] [blame]
/**
* This class file was automatically generated by jASN1 v1.8.0 (http://www.openmuc.org)
*/
package org.onosproject.xran.codecs.api;
import org.openmuc.jasn1.ber.types.*;
import javax.xml.bind.DatatypeConverter;
import java.util.Arrays;
public class EUTRANCellIdentifier extends BerBitString {
private static final long serialVersionUID = 1L;
public EUTRANCellIdentifier() {
}
public EUTRANCellIdentifier(byte[] code) {
super(code);
}
public EUTRANCellIdentifier(byte[] value, int numBits) {
super(value, numBits);
}
@Override
public int hashCode() {
return Arrays.hashCode(value);
}
@Override
public boolean equals(Object obj) {
if (obj instanceof EUTRANCellIdentifier) {
return Arrays.equals(value, ((EUTRANCellIdentifier) obj).value);
}
return super.equals(obj);
}
@Override
public String toString() {
return "\"" + DatatypeConverter.printHexBinary(value) + "\"";
}
}