Package com.twilio.voice
Enum Call.CallQualityWarning
- java.lang.Object
-
- java.lang.Enum<Call.CallQualityWarning>
-
- com.twilio.voice.Call.CallQualityWarning
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Call.CallQualityWarning>
- Enclosing class:
- Call
public static enum Call.CallQualityWarning extends java.lang.Enum<Call.CallQualityWarning>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description WARN_CONSTANT_AUDIO_IN_LEVEL
WARN_HIGH_JITTER
WARN_HIGH_PACKET_LOSS
WARN_HIGH_RTT
WARN_LOW_MOS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Call.CallQualityWarning
fromString(java.lang.String warningName)
java.lang.String
toString()
static Call.CallQualityWarning
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Call.CallQualityWarning[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WARN_HIGH_RTT
public static final Call.CallQualityWarning WARN_HIGH_RTT
-
WARN_HIGH_JITTER
public static final Call.CallQualityWarning WARN_HIGH_JITTER
-
WARN_HIGH_PACKET_LOSS
public static final Call.CallQualityWarning WARN_HIGH_PACKET_LOSS
-
WARN_LOW_MOS
public static final Call.CallQualityWarning WARN_LOW_MOS
-
WARN_CONSTANT_AUDIO_IN_LEVEL
public static final Call.CallQualityWarning WARN_CONSTANT_AUDIO_IN_LEVEL
-
-
Method Detail
-
values
public static Call.CallQualityWarning[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Call.CallQualityWarning c : Call.CallQualityWarning.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Call.CallQualityWarning valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Call.CallQualityWarning>
-
fromString
public static Call.CallQualityWarning fromString(java.lang.String warningName)
-
-