Package com.twilio.twiml.voice
Enum Reject.Reason
- java.lang.Object
-
- java.lang.Enum<Reject.Reason>
-
- com.twilio.twiml.voice.Reject.Reason
-
- All Implemented Interfaces:
Serializable,Comparable<Reject.Reason>
- Enclosing class:
- Reject
public static enum Reject.Reason extends Enum<Reject.Reason>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static Reject.ReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static Reject.Reason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REJECTED
public static final Reject.Reason REJECTED
-
BUSY
public static final Reject.Reason BUSY
-
-
Method Detail
-
values
public static Reject.Reason[] 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 (Reject.Reason c : Reject.Reason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Reject.Reason 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<Reject.Reason>
-
-