slowr | 13fa5b0 | 2017-08-08 16:32:31 -0700 | [diff] [blame^] | 1 | /** |
| 2 | * This class file was automatically generated by jASN1 v1.8.0 (http://www.openmuc.org) |
| 3 | */ |
| 4 | |
| 5 | package org.onosproject.xran.codecs.api; |
| 6 | |
| 7 | import java.io.IOException; |
| 8 | import java.io.EOFException; |
| 9 | import java.io.InputStream; |
| 10 | import java.util.List; |
| 11 | import java.util.ArrayList; |
| 12 | import java.util.Iterator; |
| 13 | import java.io.UnsupportedEncodingException; |
| 14 | import java.math.BigInteger; |
| 15 | import java.io.Serializable; |
| 16 | import java.util.Objects; |
| 17 | |
| 18 | import org.openmuc.jasn1.ber.*; |
| 19 | import org.openmuc.jasn1.ber.types.*; |
| 20 | import org.openmuc.jasn1.ber.types.string.*; |
| 21 | |
| 22 | |
| 23 | public class MMEUES1APID extends BerInteger { |
| 24 | |
| 25 | private static final long serialVersionUID = 1L; |
| 26 | |
| 27 | public MMEUES1APID() { |
| 28 | } |
| 29 | |
| 30 | public MMEUES1APID(byte[] code) { |
| 31 | super(code); |
| 32 | } |
| 33 | |
| 34 | public MMEUES1APID(BigInteger value) { |
| 35 | super(value); |
| 36 | } |
| 37 | |
| 38 | public MMEUES1APID(long value) { |
| 39 | super(value); |
| 40 | } |
| 41 | |
| 42 | @Override |
| 43 | public int hashCode() { |
| 44 | return value.hashCode(); |
| 45 | } |
| 46 | |
| 47 | @Override |
| 48 | public boolean equals(Object obj) { |
| 49 | if (obj instanceof MMEUES1APID) { |
| 50 | return Objects.equals(value, ((MMEUES1APID) obj).value); |
| 51 | } |
| 52 | return super.equals(obj); |
| 53 | } |
| 54 | } |