private static enum Controller.ConnectionParameter extends Enum<Controller.ConnectionParameter>
ItemListener
.Enum Constant and Description |
---|
BAUDRATE
Baudrate.
|
DATABITS
Datenbits.
|
PARITY
Parity.
|
PORTNAME
Portname.
|
STOPBITS
Stopbits.
|
Modifier and Type | Method and Description |
---|---|
static Controller.ConnectionParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Controller.ConnectionParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Controller.ConnectionParameter PORTNAME
public static final Controller.ConnectionParameter BAUDRATE
public static final Controller.ConnectionParameter DATABITS
public static final Controller.ConnectionParameter STOPBITS
public static final Controller.ConnectionParameter PARITY
public static Controller.ConnectionParameter[] values()
for (Controller.ConnectionParameter c : Controller.ConnectionParameter.values()) System.out.println(c);
public static Controller.ConnectionParameter 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.