Package com.twilio.twiml.voice
Enum Conference.JitterBufferSize
- java.lang.Object
-
- java.lang.Enum<Conference.JitterBufferSize>
-
- com.twilio.twiml.voice.Conference.JitterBufferSize
-
- All Implemented Interfaces:
Serializable,Comparable<Conference.JitterBufferSize>
- Enclosing class:
- Conference
public static enum Conference.JitterBufferSize extends Enum<Conference.JitterBufferSize>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static Conference.JitterBufferSizevalueOf(String name)Returns the enum constant of this type with the specified name.static Conference.JitterBufferSize[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LARGE
public static final Conference.JitterBufferSize LARGE
-
MEDIUM
public static final Conference.JitterBufferSize MEDIUM
-
SMALL
public static final Conference.JitterBufferSize SMALL
-
OFF
public static final Conference.JitterBufferSize OFF
-
-
Method Detail
-
values
public static Conference.JitterBufferSize[] 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.JitterBufferSize c : Conference.JitterBufferSize.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.JitterBufferSize 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.JitterBufferSize>
-
-