Interface StringCondition.Builder

    • Method Detail

      • value

        StringCondition.Builder value​(String value)

        The value of the string.

        Parameters:
        value - The value of the string.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • operator

        StringCondition.Builder operator​(String operator)

        A string that defines what values will be returned.

        If this is included, avoid combinations of operators that will return all possible values. For example, including both EQUALS_TO and NOT_EQUALS_TO with a value of 4 will return all values.

        Parameters:
        operator - A string that defines what values will be returned.

        If this is included, avoid combinations of operators that will return all possible values. For example, including both EQUALS_TO and NOT_EQUALS_TO with a value of 4 will return all values.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        StringConditionOperator, StringConditionOperator
      • operator

        StringCondition.Builder operator​(StringConditionOperator operator)

        A string that defines what values will be returned.

        If this is included, avoid combinations of operators that will return all possible values. For example, including both EQUALS_TO and NOT_EQUALS_TO with a value of 4 will return all values.

        Parameters:
        operator - A string that defines what values will be returned.

        If this is included, avoid combinations of operators that will return all possible values. For example, including both EQUALS_TO and NOT_EQUALS_TO with a value of 4 will return all values.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        StringConditionOperator, StringConditionOperator