Class AbstractPropertyQueryCondition

    • Constructor Detail

      • AbstractPropertyQueryCondition

        public AbstractPropertyQueryCondition​(boolean reversed,
                                              String property)
        Parameters:
        reversed - true if the condition should be reversed
        property - the name of the property
      • AbstractPropertyQueryCondition

        public AbstractPropertyQueryCondition​(boolean reversed,
                                              String property,
                                              boolean custom)
        Parameters:
        reversed - true if the condition should be reversed
        property - the name of the property
        custom - true if it's a custom event property
        Since:
        13.9RC1
      • AbstractPropertyQueryCondition

        public AbstractPropertyQueryCondition​(boolean reversed,
                                              String property,
                                              boolean custom,
                                              Type customType)
        Parameters:
        reversed - true if the condition should be reversed
        property - the name of the property
        custom - true if it's a custom event reversed
        customType - the type in which that property was stored
        Since:
        14.2RC1
    • Method Detail

      • getProperty

        public String getProperty()
        Returns:
        the property
      • isParameter

        @Deprecated(since="14.2RC1")
        public boolean isParameter()
        Deprecated.
        use isCustom() instead
        Returns:
        true if it's a custom event parameter
        Since:
        13.9RC1
      • isCustom

        public boolean isCustom()
        Returns:
        true if it's a custom event property
        Since:
        14.2RC1
      • getCustomType

        public Type getCustomType()
        Returns:
        the type in which that property was stored
        Since:
        14.2RC1