Enum Feedback.Issues
- java.lang.Object
-
- java.lang.Enum<Feedback.Issues>
-
- com.twilio.rest.api.v2010.account.call.Feedback.Issues
-
- All Implemented Interfaces:
Serializable
,Comparable<Feedback.Issues>
- Enclosing class:
- Feedback
public static enum Feedback.Issues extends Enum<Feedback.Issues>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIO_LATENCY
DIGITS_NOT_CAPTURED
DROPPED_CALL
IMPERFECT_AUDIO
INCORRECT_CALLER_ID
ONE_WAY_AUDIO
POST_DIAL_DELAY
UNSOLICITED_CALL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Feedback.Issues
forValue(String value)
String
toString()
static Feedback.Issues
valueOf(String name)
Returns the enum constant of this type with the specified name.static Feedback.Issues[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUDIO_LATENCY
public static final Feedback.Issues AUDIO_LATENCY
-
DIGITS_NOT_CAPTURED
public static final Feedback.Issues DIGITS_NOT_CAPTURED
-
DROPPED_CALL
public static final Feedback.Issues DROPPED_CALL
-
IMPERFECT_AUDIO
public static final Feedback.Issues IMPERFECT_AUDIO
-
INCORRECT_CALLER_ID
public static final Feedback.Issues INCORRECT_CALLER_ID
-
ONE_WAY_AUDIO
public static final Feedback.Issues ONE_WAY_AUDIO
-
POST_DIAL_DELAY
public static final Feedback.Issues POST_DIAL_DELAY
-
UNSOLICITED_CALL
public static final Feedback.Issues UNSOLICITED_CALL
-
-
Method Detail
-
values
public static Feedback.Issues[] 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 (Feedback.Issues c : Feedback.Issues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Feedback.Issues 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<Feedback.Issues>
-
forValue
public static Feedback.Issues forValue(String value)
-
-