public enum OutputDataFormat extends Enum<OutputDataFormat>
Enum Constant and Description |
---|
Hexadecimal
Output data in hexadecimal number format.
|
PacketData
Output data in CipherLab proprietary packet format
|
RawData
Output data without processing
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static OutputDataFormat |
valueOf(int value) |
static OutputDataFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputDataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputDataFormat PacketData
public static final OutputDataFormat Hexadecimal
public static final OutputDataFormat RawData
public static OutputDataFormat[] values()
for (OutputDataFormat c : OutputDataFormat.values()) System.out.println(c);
public static OutputDataFormat 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 nullpublic int getValue()
public static OutputDataFormat valueOf(int value)