Enum Room.RoomElement
- java.lang.Object
-
- java.lang.Enum<Room.RoomElement>
-
- org.apache.openmeetings.db.entity.room.Room.RoomElement
-
- All Implemented Interfaces:
Serializable
,Comparable<Room.RoomElement>
- Enclosing class:
- Room
public static enum Room.RoomElement extends Enum<Room.RoomElement>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_MENU
ACTIVITIES
CHAT
FILES
MICROPHONE_STATUS
POLL_MENU
SCREEN_SHARING
TOP_BAR
USER_COUNT
WHITEBOARD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Room.RoomElement
valueOf(String name)
Returns the enum constant of this type with the specified name.static Room.RoomElement[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_BAR
public static final Room.RoomElement TOP_BAR
-
CHAT
public static final Room.RoomElement CHAT
-
ACTIVITIES
public static final Room.RoomElement ACTIVITIES
-
FILES
public static final Room.RoomElement FILES
-
ACTION_MENU
public static final Room.RoomElement ACTION_MENU
-
POLL_MENU
public static final Room.RoomElement POLL_MENU
-
SCREEN_SHARING
public static final Room.RoomElement SCREEN_SHARING
-
WHITEBOARD
public static final Room.RoomElement WHITEBOARD
-
MICROPHONE_STATUS
public static final Room.RoomElement MICROPHONE_STATUS
-
USER_COUNT
public static final Room.RoomElement USER_COUNT
-
-
Method Detail
-
values
public static Room.RoomElement[] 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 (Room.RoomElement c : Room.RoomElement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Room.RoomElement 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
-
-