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_OUT
被管理员踢出房间
CLOSE_BY_MEMBER
房间被关闭
END_OF_LIFE
房间到期关闭
END_OF_RTC
rtc 异常,退出
ALL_MEMBERS_OUT
所有成员退出
CLOSE_BY_BACKEND
后台关闭
LOGIN_STATE_ERROR
账号异常
UNKNOWN
未知异常
-
Method Summary
Modifier and Type Method Description final NERoomEndReason
valueOf(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.
-
-
-
-