public static enum AsyncSerialPortCommunicator.ModemType extends java.lang.Enum<AsyncSerialPortCommunicator.ModemType>
| Enum Constant and Description |
|---|
MODEM_FESTNETZ
Festnetz-Modem.
|
MODEM_GPRS
GPRS-Modem.
|
MODEM_GSM
GSM-Modem.
|
| Modifier and Type | Method and Description |
|---|---|
static AsyncSerialPortCommunicator.ModemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsyncSerialPortCommunicator.ModemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncSerialPortCommunicator.ModemType MODEM_FESTNETZ
public static final AsyncSerialPortCommunicator.ModemType MODEM_GSM
public static final AsyncSerialPortCommunicator.ModemType MODEM_GPRS
public static AsyncSerialPortCommunicator.ModemType[] values()
for (AsyncSerialPortCommunicator.ModemType c : AsyncSerialPortCommunicator.ModemType.values()) System.out.println(c);
public static AsyncSerialPortCommunicator.ModemType 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