Class InQueryCondition


  • public class InQueryCondition
    extends AbstractPropertyQueryCondition
    A condition which is true if the property value is equals to one of the passed values.
    Since:
    12.5RC1
    Version:
    $Id: 125d44823c27babd05b1ee2e5aa00697e2e4355a $
    • Constructor Detail

      • InQueryCondition

        public InQueryCondition​(boolean reversed,
                                String property,
                                List<Object> values)
        Parameters:
        reversed - true if the condition should be reversed
        property - the name of the property
        values - the values to compare to the property value
      • InQueryCondition

        public InQueryCondition​(boolean reversed,
                                String property,
                                boolean custom,
                                List<Object> values)
        Parameters:
        reversed - true if the condition should be reversed
        property - the name of the property
        custom - true if the property is a custom parameter
        values - the values to compare to the property value
        Since:
        13.9RC1
      • InQueryCondition

        public InQueryCondition​(boolean reversed,
                                String property,
                                boolean custom,
                                Type customType,
                                List<Object> values)
        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
        values - the values to compare to the property value
        Since:
        14.2RC1