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