Interface EscapeBuilder<T>

Type Parameters:
T - The builder type that is returned on terminal operations

public interface EscapeBuilder<T>
A builder for the escape part of a like predicate.
Since:
1.0.0
Author:
Christian Beikov, Moritz Becker
  • Method Summary

    Modifier and Type Method Description
    T escape​(char c)
    Sets the given character as the escape character.
    T noEscape()
    Specifies that no escape character should be used.
  • Method Details

    • escape

      T escape​(char c)
      Sets the given character as the escape character.
      Parameters:
      c - The escape character
      Returns:
      The parent builder
    • noEscape

      T noEscape()
      Specifies that no escape character should be used.
      Returns:
      The parent builder