Enum Reservation.ConferenceEvent
- java.lang.Object
-
- java.lang.Enum<Reservation.ConferenceEvent>
-
- com.twilio.rest.taskrouter.v1.workspace.worker.Reservation.ConferenceEvent
-
- All Implemented Interfaces:
Serializable
,Comparable<Reservation.ConferenceEvent>
- Enclosing class:
- Reservation
public static enum Reservation.ConferenceEvent extends Enum<Reservation.ConferenceEvent>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Reservation.ConferenceEvent
forValue(String value)
Generate a ConferenceEvent from a string.String
toString()
static Reservation.ConferenceEvent
valueOf(String name)
Returns the enum constant of this type with the specified name.static Reservation.ConferenceEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final Reservation.ConferenceEvent START
-
END
public static final Reservation.ConferenceEvent END
-
JOIN
public static final Reservation.ConferenceEvent JOIN
-
LEAVE
public static final Reservation.ConferenceEvent LEAVE
-
MUTE
public static final Reservation.ConferenceEvent MUTE
-
HOLD
public static final Reservation.ConferenceEvent HOLD
-
SPEAKER
public static final Reservation.ConferenceEvent SPEAKER
-
-
Method Detail
-
values
public static Reservation.ConferenceEvent[] 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 (Reservation.ConferenceEvent c : Reservation.ConferenceEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Reservation.ConferenceEvent 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<Reservation.ConferenceEvent>
-
forValue
public static Reservation.ConferenceEvent forValue(String value)
Generate a ConferenceEvent from a string.- Parameters:
value
- string value- Returns:
- generated ConferenceEvent
-
-