예제 #1
0
 /**
  * Used to restrict a value to be less 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 lte(String property, Object value) {
   criteria.add(Restrictions.lte(property, value));
   return this;
 }