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