Enum IncomingPhoneNumber.EmergencyAddressStatus
- java.lang.Object
-
- java.lang.Enum<IncomingPhoneNumber.EmergencyAddressStatus>
-
- com.twilio.rest.api.v2010.account.IncomingPhoneNumber.EmergencyAddressStatus
-
- All Implemented Interfaces:
Serializable,Comparable<IncomingPhoneNumber.EmergencyAddressStatus>
- Enclosing class:
- IncomingPhoneNumber
public static enum IncomingPhoneNumber.EmergencyAddressStatus extends Enum<IncomingPhoneNumber.EmergencyAddressStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PENDING_REGISTRATIONPENDING_UNREGISTRATIONREGISTEREDREGISTRATION_FAILUREUNREGISTEREDUNREGISTRATION_FAILURE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IncomingPhoneNumber.EmergencyAddressStatusforValue(String value)StringtoString()static IncomingPhoneNumber.EmergencyAddressStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static IncomingPhoneNumber.EmergencyAddressStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGISTERED
public static final IncomingPhoneNumber.EmergencyAddressStatus REGISTERED
-
UNREGISTERED
public static final IncomingPhoneNumber.EmergencyAddressStatus UNREGISTERED
-
PENDING_REGISTRATION
public static final IncomingPhoneNumber.EmergencyAddressStatus PENDING_REGISTRATION
-
REGISTRATION_FAILURE
public static final IncomingPhoneNumber.EmergencyAddressStatus REGISTRATION_FAILURE
-
PENDING_UNREGISTRATION
public static final IncomingPhoneNumber.EmergencyAddressStatus PENDING_UNREGISTRATION
-
UNREGISTRATION_FAILURE
public static final IncomingPhoneNumber.EmergencyAddressStatus UNREGISTRATION_FAILURE
-
-
Method Detail
-
values
public static IncomingPhoneNumber.EmergencyAddressStatus[] 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 (IncomingPhoneNumber.EmergencyAddressStatus c : IncomingPhoneNumber.EmergencyAddressStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IncomingPhoneNumber.EmergencyAddressStatus 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<IncomingPhoneNumber.EmergencyAddressStatus>
-
forValue
public static IncomingPhoneNumber.EmergencyAddressStatus forValue(String value)
-
-