Package com.twilio.rest.wireless.v1
Enum Sim.Status
- java.lang.Object
-
- java.lang.Enum<Sim.Status>
-
- com.twilio.rest.wireless.v1.Sim.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<Sim.Status>
- Enclosing class:
- Sim
public static enum Sim.Status extends Enum<Sim.Status>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Sim.Status
forValue(String value)
Generate a Status from a string.String
toString()
static Sim.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static Sim.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW
public static final Sim.Status NEW
-
READY
public static final Sim.Status READY
-
ACTIVE
public static final Sim.Status ACTIVE
-
SUSPENDED
public static final Sim.Status SUSPENDED
-
DEACTIVATED
public static final Sim.Status DEACTIVATED
-
CANCELED
public static final Sim.Status CANCELED
-
SCHEDULED
public static final Sim.Status SCHEDULED
-
UPDATING
public static final Sim.Status UPDATING
-
-
Method Detail
-
values
public static Sim.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 (Sim.Status c : Sim.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 Sim.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<Sim.Status>
-
forValue
public static Sim.Status forValue(String value)
Generate a Status from a string.- Parameters:
value
- string value- Returns:
- generated Status
-
-