I think you need a Hibernate method Restrictions.in()that takes a property name as the first argument and either an array or a collection of objects as the second.
See also: Javadoc
: , , Restrictions, , eq:
session.createCriteria(Person.class).add(Restrictions.eq("phones", "555-1234")).list();