| Enum Constant and Description |
|---|
CONSTRUCTED
A TLV whose value consists of other TLVs (ie a data structure)
|
PRIMITIVE
A TLV that has its own data value (ie an atomic data item)
|
| Modifier and Type | Method and Description |
|---|---|
static BERtype |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BERtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BERtype PRIMITIVE
public static final BERtype CONSTRUCTED
public static BERtype[] values()
for (BERtype c : BERtype.values()) System.out.println(c);
public static BERtype 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