public enum BERrendering extends java.lang.Enum<BERrendering>
| Enum Constant and Description |
|---|
BCD
Like HEX but reversing the order of the hex digits within each byte.
|
BITSTRING |
HEX
Simply present the content of the data as a string of hex digits
|
INTEGER
Assume the content of the field to be a twos complement integer
encoded as described in X.690
|
NATIVE
Use the native encoding if there is one, else use default (hex)
|
OBJECT_IDENTIFIER
Assume the content of the field to be an object identifier
encoded as described in X.690
|
REAL
Assume the content of the field to be a real as encoded
as described in X.690
|
STRING
Render the content as text, assuming ASCII encoding and representing any non printing characters as ?
|
UTF16
Assume the field to be a UTF-16 encoded string
|
UTF8
Assume the field to be a UTF-8 encoded string
|
| Modifier and Type | Method and Description |
|---|---|
static BERrendering |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BERrendering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BERrendering HEX
public static final BERrendering STRING
public static final BERrendering BCD
public static final BERrendering REAL
public static final BERrendering INTEGER
public static final BERrendering UTF8
public static final BERrendering UTF16
public static final BERrendering OBJECT_IDENTIFIER
public static final BERrendering BITSTRING
public static final BERrendering NATIVE
public static BERrendering[] values()
for (BERrendering c : BERrendering.values()) System.out.println(c);
public static BERrendering 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