Beispiel #1
0
 /**
  * Used to restrict a value to be less than the given value
  *
  * @param property The name of the property
  * @param value The value to restrict by
  * @return This query instance
  */
 public Query lt(String property, Object value) {
   criteria.add(Restrictions.lt(property, value));
   return this;
 }