public enum DeviceType extends Enum<DeviceType>
| Enum Constant and Description |
|---|
DEVICE_100AX |
DEVICE_2232C |
DEVICE_2232H |
DEVICE_232AM |
DEVICE_232BM |
DEVICE_232H |
DEVICE_232R |
DEVICE_4222H_0 |
DEVICE_4222H_1_2 |
DEVICE_4222H_3 |
DEVICE_4232H |
DEVICE_UNKNOWN |
DEVICE_X_SERIES |
| Modifier and Type | Method and Description |
|---|---|
static DeviceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceType DEVICE_232BM
public static final DeviceType DEVICE_232AM
public static final DeviceType DEVICE_100AX
public static final DeviceType DEVICE_UNKNOWN
public static final DeviceType DEVICE_2232C
public static final DeviceType DEVICE_232R
public static final DeviceType DEVICE_2232H
public static final DeviceType DEVICE_4232H
public static final DeviceType DEVICE_232H
public static final DeviceType DEVICE_X_SERIES
public static final DeviceType DEVICE_4222H_0
public static final DeviceType DEVICE_4222H_1_2
public static final DeviceType DEVICE_4222H_3
public static DeviceType[] values()
for (DeviceType c : DeviceType.values()) System.out.println(c);
public static DeviceType 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 © 2021. All rights reserved.