Module org.jooq
Package org.jooq.impl

Interface QOM.EndsWithIgnoreCase<T>

All Superinterfaces:
Condition, Field<Boolean>, FieldOrConstraint, FieldOrRow, FieldOrRowOrSelect, GroupField, Named, OrderField<Boolean>, QOM.CompareCondition<T,QOM.EndsWithIgnoreCase<T>>, QueryPart, SelectField<Boolean>, SelectFieldOrAsterisk, Serializable, TableElement, Typed<Boolean>
Enclosing class:
QOM

public static interface QOM.EndsWithIgnoreCase<T> extends QOM.CompareCondition<T,QOM.EndsWithIgnoreCase<T>>
The ENDS WITH IGNORE CASE operator.

Convenience method for Field.like(String, char) including proper adding of wildcards and escaping.

SQL: lower(this) like ('%' || lower(escape(value, '\'))) escape '\'

Note: This also works with numbers, for instance val(1133).endsWithIgnoreCase(33)