public static enum InMeetingUserInfo.InMeetingUserRole extends java.lang.Enum<InMeetingUserInfo.InMeetingUserRole>
| Enum Constant and Description |
|---|
USERROLE_ATTENDEE
Attendee in the meeting.
|
USERROLE_BREAKOUTROOM_MODERATOR
Host in breakout meeting.
|
USERROLE_COHOST
Co-host.
|
USERROLE_HOST
Host.
|
USERROLE_NONE
For initialization.
|
USERROLE_PANELIST
Panelist in webinar.
|
| Modifier and Type | Method and Description |
|---|---|
static InMeetingUserInfo.InMeetingUserRole |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InMeetingUserInfo.InMeetingUserRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InMeetingUserInfo.InMeetingUserRole USERROLE_NONE
public static final InMeetingUserInfo.InMeetingUserRole USERROLE_HOST
public static final InMeetingUserInfo.InMeetingUserRole USERROLE_COHOST
public static final InMeetingUserInfo.InMeetingUserRole USERROLE_PANELIST
public static final InMeetingUserInfo.InMeetingUserRole USERROLE_BREAKOUTROOM_MODERATOR
public static final InMeetingUserInfo.InMeetingUserRole USERROLE_ATTENDEE
public static InMeetingUserInfo.InMeetingUserRole[] values()
for (InMeetingUserInfo.InMeetingUserRole c : InMeetingUserInfo.InMeetingUserRole.values()) System.out.println(c);
public static InMeetingUserInfo.InMeetingUserRole 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