public enum ModemPortType extends java.lang.Enum<ModemPortType>
| Enum Constant and Description |
|---|
AT |
AUDIO |
GPS |
IGNORED |
MBIM |
NET |
QCDM |
QMI |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ModemPortType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModemPortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModemPortType UNKNOWN
public static final ModemPortType NET
public static final ModemPortType AT
public static final ModemPortType QCDM
public static final ModemPortType GPS
public static final ModemPortType QMI
public static final ModemPortType MBIM
public static final ModemPortType AUDIO
public static final ModemPortType IGNORED
public static ModemPortType[] values()
for (ModemPortType c : ModemPortType.values()) System.out.println(c);
public static ModemPortType 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