| Enum Constant and Description |
|---|
APPLICATION
The type is only valid for one specific application
|
CONTEXT
The type depends on the context (such as within a sequence, set or choice)
|
PRIVATE
Defined in private specifications
|
UNIVERSAL
The type is native to ASN.1
|
| Modifier and Type | Method and Description |
|---|---|
static BERclass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BERclass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BERclass PRIVATE
public static final BERclass CONTEXT
public static final BERclass APPLICATION
public static final BERclass UNIVERSAL
public static BERclass[] values()
for (BERclass c : BERclass.values()) System.out.println(c);
public static BERclass 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 null