// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.oer.its.ieee1609dot2.basetypes;

import org.bouncycastle.asn1.ASN1Integer;
import java.math.BigInteger;

public class Elevation extends UINT16
{
    public Elevation(final UINT16 uint16) {
        super(uint16.getValue());
    }
    
    public Elevation(final BigInteger bigInteger) {
        super(bigInteger);
    }
    
    public Elevation(final int n) {
        super(n);
    }
    
    public Elevation(final long n) {
        super(n);
    }
    
    protected Elevation(final ASN1Integer asn1Integer) {
        super(asn1Integer);
    }
    
    public static Elevation getInstance(final Object o) {
        if (o instanceof Elevation) {
            return (Elevation)o;
        }
        if (o != null) {
            return new Elevation(UINT16.getInstance(o));
        }
        return null;
    }
}
