public enum RespondWhen extends Enum<RespondWhen>
Java class for RespondWhen.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RespondWhen">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Never"/>
<enumeration value="OnError"/>
<enumeration value="Always"/>
<enumeration value="OnConversationError"/>
<enumeration value="OnConversationComplete"/>
<enumeration value="OnCallComplete"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALWAYS |
NEVER |
ON_CALL_COMPLETE |
ON_CONVERSATION_COMPLETE |
ON_CONVERSATION_ERROR |
ON_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static RespondWhen |
fromValue(String v) |
String |
value() |
static RespondWhen |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RespondWhen[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RespondWhen NEVER
public static final RespondWhen ON_ERROR
public static final RespondWhen ALWAYS
public static final RespondWhen ON_CONVERSATION_ERROR
public static final RespondWhen ON_CONVERSATION_COMPLETE
public static final RespondWhen ON_CALL_COMPLETE
public static RespondWhen[] values()
for (RespondWhen c : RespondWhen.values()) System.out.println(c);
public static RespondWhen 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 value()
public static RespondWhen fromValue(String v)
Copyright © 2017. All rights reserved.