Interface StringFunction

    • Method Detail

      • like

        default LikeCondition like​(String value)
        Returns a condition, that is true for all items, if and only if the value of this function for that item is matches the given parameter.
      • startsWith

        default LikeCondition startsWith​(String value)
        Returns a condition, that is true for all items, if and only if the value of this function for that item starts with the given parameter.
      • endsWith

        default LikeCondition endsWith​(String value)
        Returns a condition, that is true for all items, if and only if the value of this function for that item ends with the given parameter.
      • contains

        default LikeCondition contains​(String value)
        Returns a condition, that is true for all items, if and only if the value of this function for that item contains the given parameter.