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

io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes.Elevation 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;

/**
 * Elevation ::= Uint16
 */
public class Elevation
    extends UINT16
{

    public Elevation(UINT16 value)
    {
        super(value.getValue());
    }

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

    public Elevation(int value)
    {
        super(value);
    }

    public Elevation(long value)
    {
        super(value);
    }

    protected Elevation(ASN1Integer integer)
    {
        super(integer);
    }

    public static Elevation getInstance(Object o)
    {
        if (o instanceof Elevation)
        {
            return (Elevation)o;
        }

        if (o != null)
        {
            return new Elevation(UINT16.getInstance(o));
        }

        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy