Interface Criterion.Builder

    • Method Detail

      • eq

        Criterion.Builder eq​(Collection<String> eq)

        An "equals" operator to match for the filter used to create the rule.

        Parameters:
        eq - An "equals" operator to match for the filter used to create the rule.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • eq

        Criterion.Builder eq​(String... eq)

        An "equals" operator to match for the filter used to create the rule.

        Parameters:
        eq - An "equals" operator to match for the filter used to create the rule.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • neq

        Criterion.Builder neq​(Collection<String> neq)

        A "not equals" operator to match for the filter used to create the rule.

        Parameters:
        neq - A "not equals" operator to match for the filter used to create the rule.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • neq

        Criterion.Builder neq​(String... neq)

        A "not equals" operator to match for the filter used to create the rule.

        Parameters:
        neq - A "not equals" operator to match for the filter used to create the rule.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • contains

        Criterion.Builder contains​(Collection<String> contains)

        A "contains" operator to match for the filter used to create the rule.

        Parameters:
        contains - A "contains" operator to match for the filter used to create the rule.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • contains

        Criterion.Builder contains​(String... contains)

        A "contains" operator to match for the filter used to create the rule.

        Parameters:
        contains - A "contains" operator to match for the filter used to create the rule.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • exists

        Criterion.Builder exists​(Boolean exists)

        An "exists" operator to match for the filter used to create the rule.

        Parameters:
        exists - An "exists" operator to match for the filter used to create the rule.
        Returns:
        Returns a reference to this object so that method calls can be chained together.