All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes.KnownLongitude Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes;

import java.math.BigInteger;

import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Integer;

// TODO implement
public class KnownLongitude
    extends Longitude
{
    public KnownLongitude(long value)
    {
        super(value);
    }

    public KnownLongitude(BigInteger value)
    {
        super(value);
    }


    private KnownLongitude(ASN1Integer integer)
    {
        this(integer.getValue());
    }

    public static KnownLongitude getInstance(Object o)
    {
        if (o instanceof KnownLongitude)
        {
            return (KnownLongitude)o;
        }
        if (o != null)
        {
            return new KnownLongitude(ASN1Integer.getInstance(o));
        }
        return null;

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy