* Creates an expression checking this field ends with the given string
* @param end text that should be at end of this field
* @return a {@link EndsWithExpression}
*/
public QueryExpression endsWith(String end) {
return new EndsWithExpression(source, getFieldPath(), end);
}