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

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

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

public class CountryOnly extends UINT16 implements RegionInterface
{
    public CountryOnly(final int n) {
        super(n);
    }
    
    public CountryOnly(final BigInteger bigInteger) {
        super(bigInteger);
    }
    
    public static CountryOnly getInstance(final Object o) {
        if (o instanceof CountryOnly) {
            return (CountryOnly)o;
        }
        if (o != null) {
            return new CountryOnly(ASN1Integer.getInstance(o).getValue());
        }
        return null;
    }
}
