protected LikeExpression(
     String propertyName,
     String value,
     MatchMode matchMode,
     Character escapeChar,
     boolean ignoreCase) {
   this(propertyName, matchMode.toMatchString(value), escapeChar, ignoreCase);
 }
 protected LikeExpression(String propertyName, String value, MatchMode matchMode) {
   this(propertyName, matchMode.toMatchString(value));
 }