скажем, мой массив имеет 3 целочисленных значения объекта = 3,4,5
мне нужно создать критерии гибернации, которые выглядят так, как показано ниже
criteria.add(Restrictions.and(Restrictions.not(Restrictions.eq(
"stepId", new Integer(3))), Restrictions.and(Restrictions
.not(Restrictions.eq("stepId", new Integer(4))), Restrictions
.not(Restrictions.eq("stepId", new Integer(5))))));
вышеупомянутые критерии созданы вручную, интересно, можно автоматизировать это с помощью итерации
for(Iterator iterator = integerArray.iterator; iterator.hasNext()){
// create the criteria above
}