Enum Constant and Description |
---|
Disabled
DTMF are not available/can not be sent
|
MediaInband
DTMF sent as RTP samples over the audio media channel
|
MediaOutband
DTMF sent as RTP tel-event for SIP and as DTMF packet for AX2
|
NA
Not set/information not available
|
SignallingOutband
DTMF sent as SIP NFO message for SIP and the same as MediaOutband for AX2
|
Modifier and Type | Method and Description |
---|---|
static DTMFType |
fromInt(int i) |
static DTMFType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DTMFType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DTMFType NA
public static final DTMFType MediaInband
public static final DTMFType MediaOutband
public static final DTMFType SignallingOutband
public static final DTMFType Disabled
public static DTMFType[] values()
for (DTMFType c : DTMFType.values()) System.out.println(c);
public static DTMFType 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 nullpublic static DTMFType fromInt(int i)