Enum Constant and Description |
---|
U16450
The most basic emulated UART which doesn't support FIFO operation.
|
U16550A
The successor of the 16450 UART introducing a 16 byte FIFO to reduce
operational overhead.
|
U16750
This UART developed by Texas Instruments introduced a 64 byte FIFO
and hardware flow control.
|
Modifier and Type | Method and Description |
---|---|
static UartType |
fromValue(long v) |
static UartType |
fromValue(java.lang.String v) |
int |
value() |
static UartType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UartType U16450
public static final UartType U16550A
public static final UartType U16750
public static UartType[] values()
for (UartType c : UartType.values()) System.out.println(c);
public static UartType 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 nullpublic int value()
public static UartType fromValue(long v)
public static UartType fromValue(java.lang.String v)