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

io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes.NinetyDegreeInt 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;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Object;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Primitive;

/**
 * NinetyDegreeInt ::= INTEGER {
 * min (-900000000),
 * max (900000000),
 * unknown (900000001)
 * }
 */
public class NinetyDegreeInt
    extends ASN1Object
{
    private static final BigInteger loweBound = new BigInteger("-900000000");
    private static final BigInteger upperBound = new BigInteger("900000000");
    private static final BigInteger unknown = new BigInteger("900000001");

    private final BigInteger value;

    public NinetyDegreeInt(long degree)
    {
        this(BigInteger.valueOf(degree));
    }

    public NinetyDegreeInt(BigInteger degree)
    {
        if (!degree.equals(unknown))
        {
            if (degree.compareTo(loweBound) < 0)
            {
                throw new IllegalStateException("ninety degree int cannot be less than -900000000");
            }

            if (degree.compareTo(upperBound) > 0)
            {
                throw new IllegalStateException("ninety degree int cannot be greater than 900000000");
            }
        }
        value = degree;
    }


    private NinetyDegreeInt(ASN1Integer i)
    {
        this(i.getValue());
    }

    public BigInteger getValue()
    {
        return value;
    }

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

    }

    public ASN1Primitive toASN1Primitive()
    {
        return new ASN1Integer(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy