public static enum SerialChannel.FlowControl extends Enum<SerialChannel.FlowControl>
| Modifier and Type | Method and Description |
|---|---|
static SerialChannel.FlowControl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SerialChannel.FlowControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerialChannel.FlowControl NONE
public static final SerialChannel.FlowControl XONXOFF
public static final SerialChannel.FlowControl RTSCTS
public static final SerialChannel.FlowControl DSRDTR
public static SerialChannel.FlowControl[] values()
for (SerialChannel.FlowControl c : SerialChannel.FlowControl.values()) System.out.println(c);
public static SerialChannel.FlowControl valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.