Uses of Class
org.hibernate.Hibernate.CollectionInterface
-
Packages that use Hibernate.CollectionInterface Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionandSessionFactory. -
-
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.CollectionInterfacerepresenting persistent bags of a given element type.static <C> Hibernate.CollectionInterface<C>Hibernate. collection(Class<C> collectionClass)Obtain an instance ofHibernate.CollectionInterfacerepresenting persistent collections of the given type.static <U> Hibernate.CollectionInterface<List<U>>Hibernate. list()Obtain an instance ofHibernate.CollectionInterfacerepresenting persistent lists of a given element type.static <U,V>
Hibernate.CollectionInterface<Map<U,V>>Hibernate. map()Obtain an instance ofHibernate.CollectionInterfacerepresenting persistent maps of a given key and value types.static <U> Hibernate.CollectionInterface<Set<U>>Hibernate. set()Obtain an instance ofHibernate.CollectionInterfacerepresenting persistent sets of a given element type.static <U,V>
Hibernate.CollectionInterface<Map<U,V>>Hibernate. sortedMap()Obtain an instance ofHibernate.CollectionInterfacerepresenting sorted persistent maps of a given key and value types.static <U> Hibernate.CollectionInterface<SortedSet<U>>Hibernate. sortedSet()Obtain an instance ofHibernate.CollectionInterfacerepresenting sorted persistent sets of a given element type.
-