public final class Hibernate
extends java.lang.Object
Clob
,
Blob
,
Type
Modifier and Type | Method and Description |
---|---|
static void |
close(java.util.Iterator iterator)
Close an
Iterator instances obtained from Query.iterate() immediately
instead of waiting until the session is closed or disconnected. |
static java.lang.Class |
getClass(java.lang.Object proxy)
Get the true, underlying class of a proxied persistent class.
|
static LobCreator |
getLobCreator(Session session)
Obtain a lob creator for the given session.
|
static LobCreator |
getLobCreator(SessionImplementor session)
Obtain a lob creator for the given session.
|
static LobCreator |
getLobCreator(SharedSessionContractImplementor session)
Obtain a lob creator for the given session.
|
static void |
initialize(java.lang.Object proxy)
Force initialization of a proxy or persistent collection.
|
static boolean |
isInitialized(java.lang.Object proxy)
Check if the proxy or persistent collection is initialized.
|
static boolean |
isPropertyInitialized(java.lang.Object proxy,
java.lang.String propertyName)
Check if the property is initialized.
|
static java.lang.Object |
unproxy(java.lang.Object proxy)
Unproxies a
HibernateProxy . |
public static void initialize(java.lang.Object proxy) throws HibernateException
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(java.lang.Object proxy)
proxy
- a persistable object, proxy, persistent collection or nullpublic static java.lang.Class getClass(java.lang.Object proxy)
proxy
- a persistable object or proxyHibernateException
public static LobCreator getLobCreator(Session session)
session
- The session for which to obtain a lob creatorpublic static LobCreator getLobCreator(SharedSessionContractImplementor session)
session
- The session for which to obtain a lob creatorpublic static LobCreator getLobCreator(SessionImplementor session)
session
- The session for which to obtain a lob creatorpublic static void close(java.util.Iterator iterator) throws HibernateException
Iterator
instances obtained from Query.iterate()
immediately
instead of waiting until the session is closed or disconnected.iterator
- an Iterator created by iterate()HibernateException
- Indicates a problem closing the Hibernate iterator.java.lang.IllegalArgumentException
- If the Iterator is not a "Hibernate Iterator".Query.iterate()
public static boolean isPropertyInitialized(java.lang.Object proxy, java.lang.String propertyName)
proxy
- The potential proxypropertyName
- the name of a persistent attribute of the objectpublic static java.lang.Object unproxy(java.lang.Object proxy)
HibernateProxy
. If the proxy is uninitialized, it automatically triggers an initialization.
In case the supplied object is null or not a proxy, the object will be returned as-is.proxy
- the HibernateProxy
to be unproxiedCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.