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

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

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

public class Longitude extends OneEightyDegreeInt
{
    public Longitude(final long n) {
        super(n);
    }
    
    public Longitude(final BigInteger bigInteger) {
        super(bigInteger);
    }
    
    private Longitude(final ASN1Integer asn1Integer) {
        this(asn1Integer.getValue());
    }
    
    public static Longitude getInstance(final Object o) {
        if (o instanceof Longitude) {
            return (Longitude)o;
        }
        if (o != null) {
            return new Longitude(ASN1Integer.getInstance(o));
        }
        return null;
    }
}
