Package com.twilio.rest.supersim.v1
Enum EsimProfile.Status
- java.lang.Object
-
- java.lang.Enum<EsimProfile.Status>
-
- com.twilio.rest.supersim.v1.EsimProfile.Status
-
- All Implemented Interfaces:
Serializable,Comparable<EsimProfile.Status>
- Enclosing class:
- EsimProfile
public static enum EsimProfile.Status extends Enum<EsimProfile.Status>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EsimProfile.StatusforValue(String value)StringtoString()static EsimProfile.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static EsimProfile.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 EsimProfile.Status NEW
-
RESERVING
public static final EsimProfile.Status RESERVING
-
AVAILABLE
public static final EsimProfile.Status AVAILABLE
-
DOWNLOADED
public static final EsimProfile.Status DOWNLOADED
-
INSTALLED
public static final EsimProfile.Status INSTALLED
-
FAILED
public static final EsimProfile.Status FAILED
-
-
Method Detail
-
values
public static EsimProfile.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 (EsimProfile.Status c : EsimProfile.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 EsimProfile.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<EsimProfile.Status>
-
forValue
public static EsimProfile.Status forValue(String value)
-
-