public enum HIDCharTransmitMode extends Enum<HIDCharTransmitMode>
Enum Constant and Description |
---|
BatchProcessing
Send data to PC in batch.
|
ByCharacter
Send data to PC, one character at a time.
|
Modifier and Type | Method and Description |
---|---|
static HIDCharTransmitMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HIDCharTransmitMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HIDCharTransmitMode BatchProcessing
public static final HIDCharTransmitMode ByCharacter
public static HIDCharTransmitMode[] values()
for (HIDCharTransmitMode c : HIDCharTransmitMode.values()) System.out.println(c);
public static HIDCharTransmitMode 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 null