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