public enum SFSRoomSettings extends java.lang.Enum<SFSRoomSettings>
SFSRoom
Enum Constant and Description |
---|
CAPACITY_CHANGE
Toggles the ability to change the capacity of a Room at runtime
|
PASSWORD_STATE_CHANGE
Toggles the ability to change the password of a Room at runtime
|
PUBLIC_MESSAGES
Toggles the ability to send public messages in a Room at runtime
|
ROOM_NAME_CHANGE
Toggles the ability to change the name of a Room at runtime
|
USER_COUNT_CHANGE_EVENT
Toggles the notifications changes in the count of Users and Spectators in a Room
|
USER_ENTER_EVENT
Toggles the notifications for Users entering the Room
|
USER_EXIT_EVENT
Toggles the notifications for Users leaving the Room
|
USER_VARIABLES_UPDATE_EVENT
Toggles the notifications for UserVariables changes the Room
|
Modifier and Type | Method and Description |
---|---|
static SFSRoomSettings |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SFSRoomSettings[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SFSRoomSettings ROOM_NAME_CHANGE
public static final SFSRoomSettings PASSWORD_STATE_CHANGE
public static final SFSRoomSettings PUBLIC_MESSAGES
public static final SFSRoomSettings CAPACITY_CHANGE
public static final SFSRoomSettings USER_ENTER_EVENT
public static final SFSRoomSettings USER_EXIT_EVENT
public static final SFSRoomSettings USER_COUNT_CHANGE_EVENT
public static final SFSRoomSettings USER_VARIABLES_UPDATE_EVENT
public static SFSRoomSettings[] values()
for (SFSRoomSettings c : SFSRoomSettings.values()) System.out.println(c);
public static SFSRoomSettings 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