Package com.twilio.rest.supersim.v1
Enum SettingsUpdate.Status
- java.lang.Object
-
- java.lang.Enum<SettingsUpdate.Status>
-
- com.twilio.rest.supersim.v1.SettingsUpdate.Status
-
- All Implemented Interfaces:
Serializable,Comparable<SettingsUpdate.Status>
- Enclosing class:
- SettingsUpdate
public static enum SettingsUpdate.Status extends Enum<SettingsUpdate.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILEDIN_PROGRESSSCHEDULEDSUCCESSFUL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SettingsUpdate.StatusforValue(String value)StringtoString()static SettingsUpdate.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static SettingsUpdate.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCHEDULED
public static final SettingsUpdate.Status SCHEDULED
-
IN_PROGRESS
public static final SettingsUpdate.Status IN_PROGRESS
-
SUCCESSFUL
public static final SettingsUpdate.Status SUCCESSFUL
-
FAILED
public static final SettingsUpdate.Status FAILED
-
-
Method Detail
-
values
public static SettingsUpdate.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 (SettingsUpdate.Status c : SettingsUpdate.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 SettingsUpdate.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:
toStringin classEnum<SettingsUpdate.Status>
-
forValue
public static SettingsUpdate.Status forValue(String value)
-
-