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