I mostly use Hibernate criteria API in my previous project. I found Hibernate criteria Expression is already deprecated!
Is Hibernate Criteria API stable for future usage?
http://docs.jboss.org/hibernate/core/3.3/api/org/hibernate/criterion/Expression.html
Its deprecated but they have provided Restrictions instead. But make sure you make the proper choice between HQL and criteria when fetching data in hibernate. I like HQL because its simple, flexible and powerful. Read more about hql here.