Enum NERoomEndReason
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum NERoomEndReason extends Enum<NERoomEndReason>
房间结束原因枚举
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEAVE_BY_SELF成员主动离开房间
SYNC_DATA_ERROR数据同步错误
KICK_BY_SELF多设备同时加入时因为不支持多设备加入自动被系统踢出
KICK_BY_OTHER_DEVICE多设备同时加入时,被同账号的其他设备主动踢出
KICK_OUT被管理员踢出房间
CLOSE_BY_MEMBER房间被关闭
END_OF_LIFE房间到期关闭
END_OF_RTCrtc 异常,退出
ALL_MEMBERS_OUT所有成员退出
CLOSE_BY_BACKEND后台关闭
LOGIN_STATE_ERROR账号异常
CLOSE_ON_CONNECTOR_SESSION_TIMEOUT三方会议加入失败,连接器会话超时
UNKNOWN未知异常
-
Method Summary
Modifier and Type Method Description final NERoomEndReasonvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<NERoomEndReason>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final NERoomEndReason valueOf(String value)
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.)
-
values
final Array<NERoomEndReason> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-