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

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

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

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