Uses of Class
org.hibernate.Hibernate.CollectionInterface
-
Packages that use Hibernate.CollectionInterface Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities. -
-
Uses of Hibernate.CollectionInterface in org.hibernate
Methods in org.hibernate that return Hibernate.CollectionInterface Modifier and Type Method Description static <U> Hibernate.CollectionInterface<Collection<U>>
Hibernate. bag()
Obtain an instance ofHibernate.CollectionInterface
representing persistent bags of a given element type.static <C> Hibernate.CollectionInterface<C>
Hibernate. collection(Class<C> collectionClass)
Obtain an instance ofHibernate.CollectionInterface
representing persistent collections of the given type.static <U> Hibernate.CollectionInterface<List<U>>
Hibernate. list()
Obtain an instance ofHibernate.CollectionInterface
representing persistent lists of a given element type.static <U,V>
Hibernate.CollectionInterface<Map<U,V>>Hibernate. map()
Obtain an instance ofHibernate.CollectionInterface
representing persistent maps of a given key and value types.static <U> Hibernate.CollectionInterface<Set<U>>
Hibernate. set()
Obtain an instance ofHibernate.CollectionInterface
representing persistent sets of a given element type.static <U,V>
Hibernate.CollectionInterface<Map<U,V>>Hibernate. sortedMap()
Obtain an instance ofHibernate.CollectionInterface
representing sorted persistent maps of a given key and value types.static <U> Hibernate.CollectionInterface<SortedSet<U>>
Hibernate. sortedSet()
Obtain an instance ofHibernate.CollectionInterface
representing sorted persistent sets of a given element type.
-