public enum Asn1Class extends Enum<Asn1Class>
Enum Constant and Description |
---|
Application |
Context |
Private |
Universal |
Modifier and Type | Method and Description |
---|---|
static Asn1Class |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Asn1Class[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Asn1Class Universal
public static final Asn1Class Application
public static final Asn1Class Context
public static final Asn1Class Private
public static Asn1Class[] values()
for (Asn1Class c : Asn1Class.values()) System.out.println(c);
public static Asn1Class valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null