public static enum IncomingPhoneNumber.EmergencyStatus extends Enum<IncomingPhoneNumber.EmergencyStatus>
| Modifier and Type | Method and Description |
|---|---|
static IncomingPhoneNumber.EmergencyStatus |
forValue(String value)
Generate a EmergencyStatus from a string.
|
String |
toString() |
static IncomingPhoneNumber.EmergencyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncomingPhoneNumber.EmergencyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncomingPhoneNumber.EmergencyStatus ACTIVE
public static final IncomingPhoneNumber.EmergencyStatus INACTIVE
public static IncomingPhoneNumber.EmergencyStatus[] values()
for (IncomingPhoneNumber.EmergencyStatus c : IncomingPhoneNumber.EmergencyStatus.values()) System.out.println(c);
public static IncomingPhoneNumber.EmergencyStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<IncomingPhoneNumber.EmergencyStatus>public static IncomingPhoneNumber.EmergencyStatus forValue(String value)
value - string valueCopyright © 2016 Twilio, Inc. All Rights Reserved.