List of usage examples for org.hibernate Criteria interface-usage
From source file com.lp.server.partner.ejb.HvTypedCriteria.java
/**
* Verhaelt sich wie das normale org.hibernate.Criteria, nur dass die Methode
* list() eine typisierte Liste liefert.
*
* @author robert
*
From source file com.ponysdk.hibernate.query.OrderingCriteria.java
public interface OrderingCriteria extends Criteria { public int count() throws HibernateException; }
From source file cz.jirutka.commons.hibernate.criteria.AbstractCriteriaDecorator.java
/**
* Abstract decorator for Hibernate {@linkplain Criteria} which supports
* generic methods chaining.
*
* <p>The {@linkplain Criteria} cannot be simply decorated without breaking
* ability to use method chaining (fluent interface). Fortunately it's partially
From source file de.decidr.model.filters.PaginatingCriteria.java
/**
* Implementation of Criteria specifically for paginated searches. Internally
* two almost equal criteria objects are used.<br>
* The only difference in the clone is an additional rowCount projection that is
* used to retrieve the row count.
*
From source file de.sub.goobi.helper.PaginatingCriteria.java
/**
* The source for this code was found at the web address
* http://laingsolutions.com/joomla/index.php?option=com_content&task=view&id=14&Itemid=1
* and changed by retaining the class name of the class which was used to
* instantiate the current instance of PaginatingCriteria
*
From source file net.commerce.zocalo.hibernate.NoDBCriteria.java
/** a do-nothing implementation of Hibernate's Criteria that can be used when hibernate is disabled. */ public class NoDBCriteria implements Criteria { public NoDBCriteria() { }