Enum RoomMessage.Type
- java.lang.Object
-
- java.lang.Enum<RoomMessage.Type>
-
- org.apache.openmeetings.db.util.ws.RoomMessage.Type
-
- All Implemented Interfaces:
Serializable,Comparable<RoomMessage.Type>
- Enclosing class:
- RoomMessage
public static enum RoomMessage.Type extends Enum<RoomMessage.Type>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RoomMessage.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static RoomMessage.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROOM_ENTER
public static final RoomMessage.Type ROOM_ENTER
-
ROOM_EXIT
public static final RoomMessage.Type ROOM_EXIT
-
ROOM_CLOSED
public static final RoomMessage.Type ROOM_CLOSED
-
POLL_CREATED
public static final RoomMessage.Type POLL_CREATED
-
POLL_UPDATED
public static final RoomMessage.Type POLL_UPDATED
-
RECORDING_TOGGLED
public static final RoomMessage.Type RECORDING_TOGGLED
-
SHARING_TOGGLED
public static final RoomMessage.Type SHARING_TOGGLED
-
RIGHT_UPDATED
public static final RoomMessage.Type RIGHT_UPDATED
-
ACTIVITY_REMOVE
public static final RoomMessage.Type ACTIVITY_REMOVE
-
REQUEST_RIGHT_MODERATOR
public static final RoomMessage.Type REQUEST_RIGHT_MODERATOR
-
REQUEST_RIGHT_PRESENTER
public static final RoomMessage.Type REQUEST_RIGHT_PRESENTER
-
REQUEST_RIGHT_WB
public static final RoomMessage.Type REQUEST_RIGHT_WB
-
REQUEST_RIGHT_SHARE
public static final RoomMessage.Type REQUEST_RIGHT_SHARE
-
REQUEST_RIGHT_REMOTE
public static final RoomMessage.Type REQUEST_RIGHT_REMOTE
-
REQUEST_RIGHT_A
public static final RoomMessage.Type REQUEST_RIGHT_A
-
REQUEST_RIGHT_AV
public static final RoomMessage.Type REQUEST_RIGHT_AV
-
REQUEST_RIGHT_MUTE_OTHERS
public static final RoomMessage.Type REQUEST_RIGHT_MUTE_OTHERS
-
HAVE_QUESTION
public static final RoomMessage.Type HAVE_QUESTION
-
KICK
public static final RoomMessage.Type KICK
-
MUTE
public static final RoomMessage.Type MUTE
-
MUTE_OTHERS
public static final RoomMessage.Type MUTE_OTHERS
-
QUICK_POLL_UPDATED
public static final RoomMessage.Type QUICK_POLL_UPDATED
-
KURENTO_STATUS
public static final RoomMessage.Type KURENTO_STATUS
-
WB_RELOAD
public static final RoomMessage.Type WB_RELOAD
-
MODERATOR_IN_ROOM
public static final RoomMessage.Type MODERATOR_IN_ROOM
-
WB_PUT_FILE
public static final RoomMessage.Type WB_PUT_FILE
-
FILE_TREE_UPDATE
public static final RoomMessage.Type FILE_TREE_UPDATE
-
-
Method Detail
-
values
public static RoomMessage.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RoomMessage.Type c : RoomMessage.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RoomMessage.Type valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-