Interface Condition.Builder

    • Method Detail

      • eq

        @Deprecated
        Condition.Builder eq​(Collection<String> eq)
        Deprecated.

        Represents the equal condition to be applied to a single field when querying for findings.

        Parameters:
        eq - Represents the equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • eq

        @Deprecated
        Condition.Builder eq​(String... eq)
        Deprecated.

        Represents the equal condition to be applied to a single field when querying for findings.

        Parameters:
        eq - Represents the equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • neq

        @Deprecated
        Condition.Builder neq​(Collection<String> neq)
        Deprecated.

        Represents the not equal condition to be applied to a single field when querying for findings.

        Parameters:
        neq - Represents the not equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • neq

        @Deprecated
        Condition.Builder neq​(String... neq)
        Deprecated.

        Represents the not equal condition to be applied to a single field when querying for findings.

        Parameters:
        neq - Represents the not equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • gt

        @Deprecated
        Condition.Builder gt​(Integer gt)
        Deprecated.

        Represents a greater than condition to be applied to a single field when querying for findings.

        Parameters:
        gt - Represents a greater than condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • gte

        @Deprecated
        Condition.Builder gte​(Integer gte)
        Deprecated.

        Represents a greater than or equal condition to be applied to a single field when querying for findings.

        Parameters:
        gte - Represents a greater than or equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lt

        @Deprecated
        Condition.Builder lt​(Integer lt)
        Deprecated.

        Represents a less than condition to be applied to a single field when querying for findings.

        Parameters:
        lt - Represents a less than condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lte

        @Deprecated
        Condition.Builder lte​(Integer lte)
        Deprecated.

        Represents a less than or equal condition to be applied to a single field when querying for findings.

        Parameters:
        lte - Represents a less than or equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • equalsValue

        Condition.Builder equalsValue​(Collection<String> equals)

        Represents an equal condition to be applied to a single field when querying for findings.

        Parameters:
        equals - Represents an equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • equalsValue

        Condition.Builder equalsValue​(String... equals)

        Represents an equal condition to be applied to a single field when querying for findings.

        Parameters:
        equals - Represents an equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • notEquals

        Condition.Builder notEquals​(Collection<String> notEquals)

        Represents a not equal condition to be applied to a single field when querying for findings.

        Parameters:
        notEquals - Represents a not equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • notEquals

        Condition.Builder notEquals​(String... notEquals)

        Represents a not equal condition to be applied to a single field when querying for findings.

        Parameters:
        notEquals - Represents a not equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • greaterThan

        Condition.Builder greaterThan​(Long greaterThan)

        Represents a greater than condition to be applied to a single field when querying for findings.

        Parameters:
        greaterThan - Represents a greater than condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • greaterThanOrEqual

        Condition.Builder greaterThanOrEqual​(Long greaterThanOrEqual)

        Represents a greater than or equal condition to be applied to a single field when querying for findings.

        Parameters:
        greaterThanOrEqual - Represents a greater than or equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lessThan

        Condition.Builder lessThan​(Long lessThan)

        Represents a less than condition to be applied to a single field when querying for findings.

        Parameters:
        lessThan - Represents a less than condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lessThanOrEqual

        Condition.Builder lessThanOrEqual​(Long lessThanOrEqual)

        Represents a less than or equal condition to be applied to a single field when querying for findings.

        Parameters:
        lessThanOrEqual - Represents a less than or equal condition to be applied to a single field when querying for findings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.