Package com.twilio.rest.insights.v1
Enum Conference.Tag
- java.lang.Object
-
- java.lang.Enum<Conference.Tag>
-
- com.twilio.rest.insights.v1.Conference.Tag
-
- All Implemented Interfaces:
Serializable,Comparable<Conference.Tag>
- Enclosing class:
- Conference
public static enum Conference.Tag extends Enum<Conference.Tag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DETECTED_SILENCEDUPLICATE_IDENTITYHIGH_JITTERHIGH_LATENCYHIGH_PACKET_LOSSINVALID_REQUESTED_REGIONLOW_MOSPARTICIPANT_BEHAVIOR_ISSUESQUALITY_WARNINGSREGION_CONFIGURATION_ISSUESSTART_FAILURE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Conference.TagforValue(String value)StringtoString()static Conference.TagvalueOf(String name)Returns the enum constant of this type with the specified name.static Conference.Tag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID_REQUESTED_REGION
public static final Conference.Tag INVALID_REQUESTED_REGION
-
DUPLICATE_IDENTITY
public static final Conference.Tag DUPLICATE_IDENTITY
-
START_FAILURE
public static final Conference.Tag START_FAILURE
-
REGION_CONFIGURATION_ISSUES
public static final Conference.Tag REGION_CONFIGURATION_ISSUES
-
QUALITY_WARNINGS
public static final Conference.Tag QUALITY_WARNINGS
-
PARTICIPANT_BEHAVIOR_ISSUES
public static final Conference.Tag PARTICIPANT_BEHAVIOR_ISSUES
-
HIGH_PACKET_LOSS
public static final Conference.Tag HIGH_PACKET_LOSS
-
HIGH_JITTER
public static final Conference.Tag HIGH_JITTER
-
HIGH_LATENCY
public static final Conference.Tag HIGH_LATENCY
-
LOW_MOS
public static final Conference.Tag LOW_MOS
-
DETECTED_SILENCE
public static final Conference.Tag DETECTED_SILENCE
-
-
Method Detail
-
values
public static Conference.Tag[] 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 (Conference.Tag c : Conference.Tag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Conference.Tag valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<Conference.Tag>
-
forValue
public static Conference.Tag forValue(String value)
-
-