Enum Room.Right
- java.lang.Object
-
- java.lang.Enum<Room.Right>
-
- org.apache.openmeetings.db.entity.room.Room.Right
-
- All Implemented Interfaces:
Serializable
,Comparable<Room.Right>
- Enclosing class:
- Room
public static enum Room.Right extends Enum<Room.Right>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIO
MODERATOR
MUTE_OTHERS
PRESENTER
REMOTE_CONTROL
SHARE
SUPER_MODERATOR
VIDEO
WHITEBOARD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Room.Right
valueOf(String name)
Returns the enum constant of this type with the specified name.static Room.Right[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUPER_MODERATOR
public static final Room.Right SUPER_MODERATOR
-
MODERATOR
public static final Room.Right MODERATOR
-
PRESENTER
public static final Room.Right PRESENTER
-
WHITEBOARD
public static final Room.Right WHITEBOARD
-
SHARE
public static final Room.Right SHARE
-
REMOTE_CONTROL
public static final Room.Right REMOTE_CONTROL
-
AUDIO
public static final Room.Right AUDIO
-
VIDEO
public static final Room.Right VIDEO
-
MUTE_OTHERS
public static final Room.Right MUTE_OTHERS
-
-
Method Detail
-
values
public static Room.Right[] 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.Right c : Room.Right.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.Right 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
-
-