public enum HandsetType extends java.lang.Enum<HandsetType>
| Enum Constant and Description |
|---|
CORDLESS_HANDSET
The Vantage cordless handset.
|
WIRED_HANDSET
The Vantage wired handset.
|
WIRED_HEADSET
A third-party headset connected via the RJ9 jack.
|
WIRED_USB_HEADSET
A third-party headset connected via the USB port.
|
| Modifier and Type | Method and Description |
|---|---|
static HandsetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HandsetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandsetType CORDLESS_HANDSET
public static final HandsetType WIRED_HANDSET
public static final HandsetType WIRED_HEADSET
public static final HandsetType WIRED_USB_HEADSET
public static HandsetType[] values()
for (HandsetType c : HandsetType.values()) System.out.println(c);
public static HandsetType 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