public enum MeetingStatus extends java.lang.Enum<MeetingStatus>
Enum Constant and Description |
---|
MEETING_STATUS_CONNECTING
Connect to the meeting server.
|
MEETING_STATUS_DISCONNECTING
Disconnect the meeting server, user leaves meeting.
|
MEETING_STATUS_FAILED
Failed to connect the meeting server.
|
MEETING_STATUS_IDLE
No meeting is running.
|
MEETING_STATUS_IN_WAITING_ROOM
Participants who join the meeting before the start are in the waiting room.
|
MEETING_STATUS_INMEETING
Meeting is ready and in process.
|
MEETING_STATUS_RECONNECTING
Reconnecting meeting server.
|
MEETING_STATUS_UNKNOWN
Unknown status.
|
MEETING_STATUS_WAITINGFORHOST
Waiting for the host to start the meeting.
|
MEETING_STATUS_WEBINAR_DEPROMOTE
Demote the attendees from the panelist.
|
MEETING_STATUS_WEBINAR_PROMOTE
Upgrade the attendees to panelist in webinar.
|
Modifier and Type | Method and Description |
---|---|
static MeetingStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingStatus MEETING_STATUS_IDLE
public static final MeetingStatus MEETING_STATUS_CONNECTING
public static final MeetingStatus MEETING_STATUS_WAITINGFORHOST
public static final MeetingStatus MEETING_STATUS_INMEETING
public static final MeetingStatus MEETING_STATUS_DISCONNECTING
public static final MeetingStatus MEETING_STATUS_RECONNECTING
public static final MeetingStatus MEETING_STATUS_FAILED
public static final MeetingStatus MEETING_STATUS_IN_WAITING_ROOM
public static final MeetingStatus MEETING_STATUS_WEBINAR_PROMOTE
public static final MeetingStatus MEETING_STATUS_WEBINAR_DEPROMOTE
public static final MeetingStatus MEETING_STATUS_UNKNOWN
public static MeetingStatus[] values()
for (MeetingStatus c : MeetingStatus.values()) System.out.println(c);
public static MeetingStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null