public enum DTMFMethod extends Enum<DTMFMethod>
| Enum Constant and Description |
|---|
AUTO_DTMF
RTP_DTMF if telephony-event are available; otherwise,
INBAND_DTMF. |
INBAND_DTMF
INBAND DTMF as defined in ITU-T recommendation Q.23.
|
RTP_DTMF
RTP DTMF as defined in RFC4733.
|
SIP_INFO_DTMF
SIP INFO DTMF.
|
| Modifier and Type | Method and Description |
|---|---|
static DTMFMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DTMFMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DTMFMethod AUTO_DTMF
RTP_DTMF if telephony-event are available; otherwise,
INBAND_DTMF.public static final DTMFMethod RTP_DTMF
public static final DTMFMethod SIP_INFO_DTMF
public static final DTMFMethod INBAND_DTMF
public static DTMFMethod[] values()
for (DTMFMethod c : DTMFMethod.values()) System.out.println(c);
public static DTMFMethod 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 © 2022 jitsi.org. All rights reserved.