Class Like.Builder

  • Enclosing class:
    Like

    public static class Like.Builder
    extends Object
    A builder for Like.
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • left

        public Like.Builder left​(ValueExpression left)
        Add the left operand.
        Parameters:
        left - left operand
        Returns:
        this for fluent programming
      • right

        public Like.Builder right​(ValueExpression right)
        Add the right operand.
        Parameters:
        right - right operand
        Returns:
        this for fluent programming
      • not

        public Like.Builder not()
        Set for NOT LIKE expression.
        Returns:
        this for fluent programming
      • escape

        public Like.Builder escape​(char escape)
        Add an escape character.
        Parameters:
        escape - escape character
        Returns:
        this for fluent programming
      • build

        public Like build()
        Create a new instance of Like.
        Returns:
        new instance of Like