public enum ModemCapability extends java.lang.Enum<ModemCapability>
| Enum Constant and Description |
|---|
ANY
The modem supports all capabilities.
|
EVDO
The modem supports EVDO revision 0, A or B.
|
FIVE_GNR
The modem supports 5GNR.
|
GSM_UMTS
The modem supports at least one of GSM, GPRS, EDGE, UMTS, HSDPA, HSUPA or
HSPA+ technologies.
|
IRIDIUM
The modem supports Iridium technology.
|
LTE
The modem has LTE capabilities
|
NONE
The modem has no capabilities.
|
POTS
The modem supports the Plain Old Telephone Service (analog wired telephone
network).
|
TDS
The modem supports TDS.
|
| Modifier and Type | Method and Description |
|---|---|
static ModemCapability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModemCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModemCapability NONE
public static final ModemCapability POTS
public static final ModemCapability EVDO
public static final ModemCapability GSM_UMTS
public static final ModemCapability LTE
public static final ModemCapability IRIDIUM
public static final ModemCapability FIVE_GNR
public static final ModemCapability TDS
public static final ModemCapability ANY
public static ModemCapability[] values()
for (ModemCapability c : ModemCapability.values()) System.out.println(c);
public static ModemCapability 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