Enum Class NEMeetingStatus
- 所有已实现的接口:
Serializable
,Comparable<NEMeetingStatus>
,Constable
创建或加入会议时的会议状态枚举
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明当前正在创建或加入会议当前正在从会议中断开,断开原因描述如下:NEMeetingCode.MEETING_DISCONNECTING_BY_SELF
NEMeetingCode.MEETING_DISCONNECTING_REMOVED_BY_HOST
NEMeetingCode.MEETING_DISCONNECTING_CLOSED_BY_HOST
NEMeetingCode.MEETING_DISCONNECTING_LOGIN_ON_OTHER_DEVICE
NEMeetingCode.MEETING_DISCONNECTING_CLOSED_BY_SELF_AS_HOST
NEMeetingCode.MEETING_DISCONNECTING_AUTH_INFO_EXPIRED
创建或加入会议失败当前未处于任何会议中当前处于屏幕共享中当前处于等候室中当前处于会议中当前处于会议最小化状态未知状态当前处于等待状态,具体等待原因描述如下:NEMeetingCode.MEETING_WAITING_VERIFY_PASSWORD
-
方法概要
修饰符和类型方法说明int
getValue()
static boolean
isMeetingActive
(NEMeetingStatus status) static NEMeetingStatus
mapIntToMeetingStatus
(int status) static NEMeetingStatus
Returns the enum constant of this class with the specified name.static NEMeetingStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
MEETING_STATUS_FAILED
创建或加入会议失败 -
MEETING_STATUS_IDLE
当前未处于任何会议中 -
MEETING_STATUS_WAITING
当前处于等待状态,具体等待原因描述如下:- 从以下版本开始:
- 1.2.1
- 另请参阅:
-
MEETING_STATUS_CONNECTING
当前正在创建或加入会议 -
MEETING_STATUS_INMEETING
当前处于会议中 -
MEETING_STATUS_INMEETING_MINIMIZED
当前处于会议最小化状态 -
MEETING_STATUS_IN_WAITING_ROOM
当前处于等候室中 -
MEETING_STATUS_DISCONNECTING
当前正在从会议中断开,断开原因描述如下:NEMeetingCode.MEETING_DISCONNECTING_BY_SELF
NEMeetingCode.MEETING_DISCONNECTING_REMOVED_BY_HOST
NEMeetingCode.MEETING_DISCONNECTING_CLOSED_BY_HOST
NEMeetingCode.MEETING_DISCONNECTING_LOGIN_ON_OTHER_DEVICE
NEMeetingCode.MEETING_DISCONNECTING_CLOSED_BY_SELF_AS_HOST
NEMeetingCode.MEETING_DISCONNECTING_AUTH_INFO_EXPIRED
- 另请参阅:
-
MEETING_STATUS_IN_SCREEN_SHARING
当前处于屏幕共享中 -
MEETING_STATUS_UNKNOWN
未知状态
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- 如果参数为空值
-
getValue
public int getValue() -
mapIntToMeetingStatus
-
isMeetingActive
-