Package odata.msgraph.client.beta.enums
Enum RecordCompletionReason
- java.lang.Object
-
- java.lang.Enum<RecordCompletionReason>
-
- odata.msgraph.client.beta.enums.RecordCompletionReason
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<RecordCompletionReason>
public enum RecordCompletionReason extends Enum<RecordCompletionReason> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INITIAL_SILENCE_TIMEOUTMAX_RECORD_DURATION_REACHEDMAX_SILENCE_TIMEOUTMEDIA_RECEIVE_TIMEOUTOPERATION_CANCELEDPLAY_BEEP_FAILEDPLAY_PROMPT_FAILEDSTOP_TONE_DETECTEDUNSPECIFIED_ERROR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static RecordCompletionReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static RecordCompletionReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPERATION_CANCELED
public static final RecordCompletionReason OPERATION_CANCELED
-
STOP_TONE_DETECTED
public static final RecordCompletionReason STOP_TONE_DETECTED
-
MAX_RECORD_DURATION_REACHED
public static final RecordCompletionReason MAX_RECORD_DURATION_REACHED
-
INITIAL_SILENCE_TIMEOUT
public static final RecordCompletionReason INITIAL_SILENCE_TIMEOUT
-
MAX_SILENCE_TIMEOUT
public static final RecordCompletionReason MAX_SILENCE_TIMEOUT
-
PLAY_PROMPT_FAILED
public static final RecordCompletionReason PLAY_PROMPT_FAILED
-
PLAY_BEEP_FAILED
public static final RecordCompletionReason PLAY_BEEP_FAILED
-
MEDIA_RECEIVE_TIMEOUT
public static final RecordCompletionReason MEDIA_RECEIVE_TIMEOUT
-
UNSPECIFIED_ERROR
public static final RecordCompletionReason UNSPECIFIED_ERROR
-
-
Method Detail
-
values
public static RecordCompletionReason[] 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 (RecordCompletionReason c : RecordCompletionReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecordCompletionReason 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
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-