public static final enum

Call.CALL_STATE

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.nexmo.sdk.conversation.client.Call.CALL_STATE

Class Overview

Enum for Call states.

Summary

Enum Values
Call.CALL_STATE  ANSWERED  The callee has answered the call. 
Call.CALL_STATE  BUSY  The callee is on the line with another call. 
Call.CALL_STATE  COMPLETED  Call has been completed successfully. 
Call.CALL_STATE  FAILED  The call attempt failed in the phone network. 
Call.CALL_STATE  MACHINE  Platform detected an answering machine. 
Call.CALL_STATE  RINGING  The callee confirmed that the call is ringing. 
Call.CALL_STATE  STARTED  The call was started on the Nexmo platform. 
Call.CALL_STATE  TIMEOUT  The call timed out before it was answered. 
Call.CALL_STATE  UNANSWERED  The caller cancelled the call before callee picked up. 
Public Methods
static Call.CALL_STATE valueOf(String name)
final static CALL_STATE[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Call.CALL_STATE ANSWERED

The callee has answered the call.

public static final Call.CALL_STATE BUSY

The callee is on the line with another call.

public static final Call.CALL_STATE COMPLETED

Call has been completed successfully.

public static final Call.CALL_STATE FAILED

The call attempt failed in the phone network.

public static final Call.CALL_STATE MACHINE

Platform detected an answering machine.

public static final Call.CALL_STATE RINGING

The callee confirmed that the call is ringing.

public static final Call.CALL_STATE STARTED

The call was started on the Nexmo platform.

public static final Call.CALL_STATE TIMEOUT

The call timed out before it was answered.

public static final Call.CALL_STATE UNANSWERED

The caller cancelled the call before callee picked up.

Public Methods

public static Call.CALL_STATE valueOf (String name)

public static final CALL_STATE[] values ()