public enum EasyScriptStreamingState extends java.lang.Enum<EasyScriptStreamingState>
Enum Constant and Description |
---|
CARD_DATA
We're expecting card data.
|
CARD_INTERRUPTING_COMPRESSED
A card swipe is currently interrupting a compressed stream.
|
CARD_INTERRUPTING_UNCOMPRESSED
A card swipe is currently interrupting an uncompressed stream.
|
CARD_SENTINEL
We're expecting a card sentinel to be next.
|
FIRMWARE_VERSION
We're expecting a firmware version to be next.
|
MODEL
We're expecting a model number to be next.
|
PROTOCOL_VERSION
We're expecting a protocol version to be next.
|
SIGNATURE_COMPRESSED
We're expecting a compressed signature to be next.
|
SIGNATURE_SENTINEL
We're expecting a signature sentinel to be next.
|
SIGNATURE_UNCOMPRESSED
We're expecting an uncompressed signature to be next.
|
UNKNOWN
Unknown state.
|
Modifier and Type | Method and Description |
---|---|
static EasyScriptStreamingState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EasyScriptStreamingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EasyScriptStreamingState CARD_SENTINEL
public static final EasyScriptStreamingState CARD_DATA
public static final EasyScriptStreamingState SIGNATURE_SENTINEL
public static final EasyScriptStreamingState PROTOCOL_VERSION
public static final EasyScriptStreamingState MODEL
public static final EasyScriptStreamingState FIRMWARE_VERSION
public static final EasyScriptStreamingState SIGNATURE_COMPRESSED
public static final EasyScriptStreamingState SIGNATURE_UNCOMPRESSED
public static final EasyScriptStreamingState UNKNOWN
public static final EasyScriptStreamingState CARD_INTERRUPTING_UNCOMPRESSED
public static final EasyScriptStreamingState CARD_INTERRUPTING_COMPRESSED
public static EasyScriptStreamingState[] values()
for (EasyScriptStreamingState c : EasyScriptStreamingState.values()) System.out.println(c);
public static EasyScriptStreamingState 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