public final class Hibernate extends Object
Modifier and Type | Method and Description |
---|---|
static void |
close(Iterator iterator)
Close an Iterator created by iterate() immediately,
instead of waiting until the session is closed or disconnected.
|
static Class |
getClass(Object proxy)
Get the true, underlying class of a proxied persistent class.
|
static LobCreator |
getLobCreator(Session session) |
static LobCreator |
getLobCreator(SessionImplementor session) |
static void |
initialize(Object proxy)
Force initialization of a proxy or persistent collection.
|
static boolean |
isInitialized(Object proxy)
Check if the proxy or persistent collection is initialized.
|
static boolean |
isPropertyInitialized(Object proxy,
String propertyName)
Check if the property is initialized.
|
public static void initialize(Object proxy) throws HibernateException
Note: This only ensures intialization of a proxy object or collection; it is not guaranteed that the elements INSIDE the collection will be initialized/materialized.
proxy
- a persistable object, proxy, persistent collection or nullHibernateException
- if we can't initialize the proxy at this time, eg. the Session was closedpublic static boolean isInitialized(Object proxy)
proxy
- a persistable object, proxy, persistent collection or nullpublic static Class getClass(Object proxy)
proxy
- a persistable object or proxyHibernateException
public static LobCreator getLobCreator(Session session)
public static LobCreator getLobCreator(SessionImplementor session)
public static void close(Iterator iterator) throws HibernateException
iterator
- an Iterator created by iterate()HibernateException
Query.iterate()
,
Query.iterate()
public static boolean isPropertyInitialized(Object proxy, String propertyName)
proxy
- The potential proxypropertyName
- the name of a persistent attribute of the objectCopyright © 2018 JBoss by Red Hat. All rights reserved.