Package sfs3.client.entities.match
Class RoomProperties
java.lang.Object
sfs3.client.entities.match.RoomProperties
The RoomProperties class contains the names of predefined properties that can be used in matching expressions to search/filter Rooms.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic StringThe name of the Group to which the Room belongs.static StringThe Room has at least one free player slot.static StringThe Room is a Game Room.static StringThe Room is private.static StringThe Room is an SFSGame on the server-side.static StringThe maximum number of spectators allowed in the Room (Game Rooms only).static StringThe maximum number of users allowed in the Room (players in Game Rooms).static StringThe Room name.static StringThe Room spectators count (Game Rooms only).static StringThe Room users count (players in Game Rooms). -
Method Summary
-
Field Details
-
NAME
The Room name. Requires a StringMatcher to be used for values comparison. -
GROUP_ID
The name of the Group to which the Room belongs. Requires a StringMatcher to be used for values comparison. -
MAX_USERS
The maximum number of users allowed in the Room (players in Game Rooms). Requires a NumberMatcher to be used for values comparison. -
MAX_SPECTATORS
The maximum number of spectators allowed in the Room (Game Rooms only). Requires a NumberMatcher to be used for values comparison. -
USER_COUNT
The Room users count (players in Game Rooms). Requires a NumberMatcher to be used for values comparison. -
SPECTATOR_COUNT
The Room spectators count (Game Rooms only). Requires a NumberMatcher to be used for values comparison. -
IS_GAME
The Room is a Game Room. Requires a BoolMatcher to be used for values comparison. -
IS_PRIVATE
The Room is private. Requires a BoolMatcher to be used for values comparison. -
HAS_FREE_PLAYER_SLOTS
The Room has at least one free player slot. Requires a BoolMatcher to be used for values comparison. -
IS_TYPE_SFSGAME
The Room is an SFSGame on the server-side. Requires a BoolMatcher to be used for values comparison.
-