public enum ASN1TagClass extends java.lang.Enum<ASN1TagClass>
| Enum Constant and Description |
|---|
APPLICATION |
CONTEXT_SPECIFIC |
PRIVATE |
UNIVERSAL |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static ASN1TagClass |
parseClass(byte tagByte) |
static ASN1TagClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ASN1TagClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASN1TagClass UNIVERSAL
public static final ASN1TagClass APPLICATION
public static final ASN1TagClass CONTEXT_SPECIFIC
public static final ASN1TagClass PRIVATE
public static ASN1TagClass[] values()
for (ASN1TagClass c : ASN1TagClass.values()) System.out.println(c);
public static ASN1TagClass valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ASN1TagClass parseClass(byte tagByte)
public int getValue()