public enum DTMFTone extends Enum<DTMFTone>
Enum Constant and Description |
---|
EIGHT |
FIVE |
FOUR |
HASH |
NINE |
ONE |
SEVEN |
SIX |
STAR |
THREE |
TWO |
ZERO |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static DTMFTone |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DTMFTone[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DTMFTone ZERO
public static final DTMFTone ONE
public static final DTMFTone TWO
public static final DTMFTone THREE
public static final DTMFTone FOUR
public static final DTMFTone FIVE
public static final DTMFTone SIX
public static final DTMFTone SEVEN
public static final DTMFTone EIGHT
public static final DTMFTone NINE
public static final DTMFTone HASH
public static final DTMFTone STAR
public static DTMFTone[] values()
for (DTMFTone c : DTMFTone.values()) System.out.println(c);
public static DTMFTone 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 © 2004–2017. All rights reserved.