Enum DependentHostedNumberOrder.Status
- java.lang.Object
-
- java.lang.Enum<DependentHostedNumberOrder.Status>
-
- com.twilio.rest.preview.hostedNumbers.authorizationdocument.DependentHostedNumberOrder.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<DependentHostedNumberOrder.Status>
- Enclosing class:
- DependentHostedNumberOrder
public static enum DependentHostedNumberOrder.Status extends Enum<DependentHostedNumberOrder.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_REQUIRED
CARRIER_PROCESSING
COMPLETED
FAILED
PENDING_LOA
PENDING_VERIFICATION
RECEIVED
TESTING
VERIFIED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DependentHostedNumberOrder.Status
forValue(String value)
String
toString()
static DependentHostedNumberOrder.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static DependentHostedNumberOrder.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RECEIVED
public static final DependentHostedNumberOrder.Status RECEIVED
-
PENDING_VERIFICATION
public static final DependentHostedNumberOrder.Status PENDING_VERIFICATION
-
VERIFIED
public static final DependentHostedNumberOrder.Status VERIFIED
-
PENDING_LOA
public static final DependentHostedNumberOrder.Status PENDING_LOA
-
CARRIER_PROCESSING
public static final DependentHostedNumberOrder.Status CARRIER_PROCESSING
-
TESTING
public static final DependentHostedNumberOrder.Status TESTING
-
COMPLETED
public static final DependentHostedNumberOrder.Status COMPLETED
-
FAILED
public static final DependentHostedNumberOrder.Status FAILED
-
ACTION_REQUIRED
public static final DependentHostedNumberOrder.Status ACTION_REQUIRED
-
-
Method Detail
-
values
public static DependentHostedNumberOrder.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 (DependentHostedNumberOrder.Status c : DependentHostedNumberOrder.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 DependentHostedNumberOrder.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<DependentHostedNumberOrder.Status>
-
forValue
public static DependentHostedNumberOrder.Status forValue(String value)
-
-