68697071727374
return arrayClass; } public PersistentCollection instantiate(SessionImplementor session, CollectionPersister persister, Serializable key) throws HibernateException { return new PersistentArrayHolder(session, persister); }
79808182838485
public Iterator getElementsIterator(Object collection) { return Arrays.asList( (Object[]) collection ).iterator(); } public PersistentCollection wrap(SessionImplementor session, Object array) { return new PersistentArrayHolder(session, array); }
57585960616263
56575859606162
67686970717273