Enum Conference.ReasonConferenceEnded
- java.lang.Object
-
- java.lang.Enum<Conference.ReasonConferenceEnded>
-
- com.twilio.rest.api.v2010.account.Conference.ReasonConferenceEnded
-
- All Implemented Interfaces:
Serializable
,Comparable<Conference.ReasonConferenceEnded>
- Enclosing class:
- Conference
public static enum Conference.ReasonConferenceEnded extends Enum<Conference.ReasonConferenceEnded>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFERENCE_ENDED_VIA_API
LAST_PARTICIPANT_KICKED
LAST_PARTICIPANT_LEFT
PARTICIPANT_WITH_END_CONFERENCE_ON_EXIT_KICKED
PARTICIPANT_WITH_END_CONFERENCE_ON_EXIT_LEFT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Conference.ReasonConferenceEnded
forValue(String value)
String
toString()
static Conference.ReasonConferenceEnded
valueOf(String name)
Returns the enum constant of this type with the specified name.static Conference.ReasonConferenceEnded[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONFERENCE_ENDED_VIA_API
public static final Conference.ReasonConferenceEnded CONFERENCE_ENDED_VIA_API
-
PARTICIPANT_WITH_END_CONFERENCE_ON_EXIT_LEFT
public static final Conference.ReasonConferenceEnded PARTICIPANT_WITH_END_CONFERENCE_ON_EXIT_LEFT
-
PARTICIPANT_WITH_END_CONFERENCE_ON_EXIT_KICKED
public static final Conference.ReasonConferenceEnded PARTICIPANT_WITH_END_CONFERENCE_ON_EXIT_KICKED
-
LAST_PARTICIPANT_KICKED
public static final Conference.ReasonConferenceEnded LAST_PARTICIPANT_KICKED
-
LAST_PARTICIPANT_LEFT
public static final Conference.ReasonConferenceEnded LAST_PARTICIPANT_LEFT
-
-
Method Detail
-
values
public static Conference.ReasonConferenceEnded[] 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.ReasonConferenceEnded c : Conference.ReasonConferenceEnded.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.ReasonConferenceEnded 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:
toString
in classEnum<Conference.ReasonConferenceEnded>
-
forValue
public static Conference.ReasonConferenceEnded forValue(String value)
-
-