public static enum SerialPort.Port extends java.lang.Enum<SerialPort.Port>
Modifier and Type | Field and Description |
---|---|
int |
value |
Modifier and Type | Method and Description |
---|---|
static SerialPort.Port |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SerialPort.Port[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerialPort.Port kOnboard
public static final SerialPort.Port kMXP
public static final SerialPort.Port kUSB
public static final SerialPort.Port kUSB1
public static final SerialPort.Port kUSB2
public int value
public static SerialPort.Port[] values()
for (SerialPort.Port c : SerialPort.Port.values()) System.out.println(c);
public static SerialPort.Port 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 null