org.virtualbox_6_0
Enum UartType

java.lang.Object
  extended by java.lang.Enum<UartType>
      extended by org.virtualbox_6_0.UartType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UartType>

public enum UartType
extends java.lang.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
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.
 
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

U16450

public static final UartType U16450
The most basic emulated UART which doesn't support FIFO operation.


U16550A

public static final UartType U16550A
The successor of the 16450 UART introducing a 16 byte FIFO to reduce operational overhead.


U16750

public static final UartType U16750
This UART developed by Texas Instruments introduced a 64 byte FIFO and hardware flow control.

Method Detail

values

public static UartType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (UartType c : UartType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static UartType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static UartType fromValue(long v)

fromValue

public static UartType fromValue(java.lang.String v)