Package com.twilio.type
Enum SubscribeRule.Kind
- java.lang.Object
-
- java.lang.Enum<SubscribeRule.Kind>
-
- com.twilio.type.SubscribeRule.Kind
-
- All Implemented Interfaces:
Serializable
,Comparable<SubscribeRule.Kind>
- Enclosing class:
- SubscribeRule
public static enum SubscribeRule.Kind extends Enum<SubscribeRule.Kind>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubscribeRule.Kind
forValue(String value)
String
toString()
String
value()
static SubscribeRule.Kind
valueOf(String name)
Returns the enum constant of this type with the specified name.static SubscribeRule.Kind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUDIO
public static final SubscribeRule.Kind AUDIO
-
DATA
public static final SubscribeRule.Kind DATA
-
VIDEO
public static final SubscribeRule.Kind VIDEO
-
-
Method Detail
-
values
public static SubscribeRule.Kind[] 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 (SubscribeRule.Kind c : SubscribeRule.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubscribeRule.Kind 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
-
forValue
public static SubscribeRule.Kind forValue(String value)
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<SubscribeRule.Kind>
-
-