Class UserProperties


  • public final class UserProperties
    extends java.lang.Object
    The UserProperties class contains the names of predefined properties that can be used in matching expressions to search/filter users.
    See Also:
    MatchExpression, User
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String IS_IN_ANY_ROOM
      The user joined at least one room.
      static java.lang.String IS_NPC
      The user is a Non-Player Character (NPC).
      static java.lang.String IS_PLAYER
      The user is a player in a Game Room.
      static java.lang.String IS_SPECTATOR
      The user is a spectator in a Game Room.
      static java.lang.String NAME
      The user name.
      static java.lang.String PRIVILEGE_ID
      The user privilege id.
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • NAME

        public static final java.lang.String NAME
        The user name. Requires a StringMatcher to be used for values comparison.
        See Also:
        Constant Field Values
      • IS_PLAYER

        public static final java.lang.String IS_PLAYER
        The user is a player in a Game Room. Requires a BoolMatcher to be used for values comparison.
        See Also:
        Constant Field Values
      • IS_SPECTATOR

        public static final java.lang.String IS_SPECTATOR
        The user is a spectator in a Game Room. Requires a BoolMatcher to be used for values comparison.
        See Also:
        Constant Field Values
      • IS_NPC

        public static final java.lang.String IS_NPC
        The user is a Non-Player Character (NPC). Requires a BoolMatcher to be used for values comparison.
        See Also:
        Constant Field Values
      • PRIVILEGE_ID

        public static final java.lang.String PRIVILEGE_ID
        The user privilege id. Requires a NumberMatcher to be used for values comparison.
        See Also:
        Constant Field Values
      • IS_IN_ANY_ROOM

        public static final java.lang.String IS_IN_ANY_ROOM
        The user joined at least one room. Requires a BoolMatcher to be used for values comparison.
        See Also:
        Constant Field Values