public static enum SerialAddress.FlowControl extends java.lang.Enum<SerialAddress.FlowControl>
| Enum Constant and Description |
|---|
NONE |
RTSCTS_IN |
RTSCTS_IN_OUT |
RTSCTS_OUT |
XONXOFF_IN |
XONXOFF_IN_OUT |
XONXOFF_OUT |
| Modifier and Type | Method and Description |
|---|---|
static SerialAddress.FlowControl |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SerialAddress.FlowControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerialAddress.FlowControl NONE
public static final SerialAddress.FlowControl RTSCTS_IN
public static final SerialAddress.FlowControl RTSCTS_OUT
public static final SerialAddress.FlowControl RTSCTS_IN_OUT
public static final SerialAddress.FlowControl XONXOFF_IN
public static final SerialAddress.FlowControl XONXOFF_OUT
public static final SerialAddress.FlowControl XONXOFF_IN_OUT
public static SerialAddress.FlowControl[] values()
for (SerialAddress.FlowControl c : SerialAddress.FlowControl.values()) System.out.println(c);
public static SerialAddress.FlowControl 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