public enum BitModes extends Enum<BitModes>
| Enum Constant and Description |
|---|
BITMODE_ASYNC_BITBANG |
BITMODE_CBUS_BITBANG |
BITMODE_FAST_SERIAL |
BITMODE_MCU_HOST |
BITMODE_MPSSE |
BITMODE_RESET |
BITMODE_SYNC_BITBANG |
BITMODE_SYNC_FIFO |
| Modifier and Type | Method and Description |
|---|---|
static BitModes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitModes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitModes BITMODE_RESET
public static final BitModes BITMODE_ASYNC_BITBANG
public static final BitModes BITMODE_MPSSE
public static final BitModes BITMODE_SYNC_BITBANG
public static final BitModes BITMODE_MCU_HOST
public static final BitModes BITMODE_FAST_SERIAL
public static final BitModes BITMODE_CBUS_BITBANG
public static final BitModes BITMODE_SYNC_FIFO
public static BitModes[] values()
for (BitModes c : BitModes.values()) System.out.println(c);
public static BitModes 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 nullCopyright © 2019. All rights reserved.