| 
 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<UartType>
org.virtualbox_7_1.UartType
public enum UartType
The UART type represents the emulated UART chip for the serial port device.
Interface ID: {C8899D39-0B90-4265-9D02-1E38BD4D1B39}
| Enum Constant Summary | |
|---|---|
| U16450The most basic emulated UART which doesn't support FIFO operation. | |
| U16550AThe successor of the 16450 UART introducing a 16 byte FIFO to reduce operational overhead. | |
| U16750This UART developed by Texas Instruments introduced a 64 byte FIFO and hardware flow control. | |
| Method Summary | |
|---|---|
| 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. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final UartType U16450
public static final UartType U16550A
public static final UartType U16750
| Method Detail | 
|---|
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 name
java.lang.NullPointerException - if the argument is nullpublic int value()
public static UartType fromValue(long v)
public static UartType fromValue(java.lang.String v)
| 
 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||