Enum Participant.WebhookEnabledType
- java.lang.Object
-
- java.lang.Enum<Participant.WebhookEnabledType>
-
- com.twilio.rest.conversations.v1.conversation.Participant.WebhookEnabledType
-
- All Implemented Interfaces:
Serializable,Comparable<Participant.WebhookEnabledType>
- Enclosing class:
- Participant
public static enum Participant.WebhookEnabledType extends Enum<Participant.WebhookEnabledType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Participant.WebhookEnabledTypeforValue(String value)StringtoString()static Participant.WebhookEnabledTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Participant.WebhookEnabledType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRUE
public static final Participant.WebhookEnabledType TRUE
-
FALSE
public static final Participant.WebhookEnabledType FALSE
-
-
Method Detail
-
values
public static Participant.WebhookEnabledType[] 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 (Participant.WebhookEnabledType c : Participant.WebhookEnabledType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Participant.WebhookEnabledType 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<Participant.WebhookEnabledType>
-
forValue
public static Participant.WebhookEnabledType forValue(String value)
-
-