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