/** Add a filter that uses the < operator. */
 public Search addFilterLessThan(String property, Object value) {
   SearchUtil.addFilterLessThan(this, property, value);
   return this;
 }