Package org.hibernate.engine.jdbc
Class AbstractLobCreator
- java.lang.Object
-
- org.hibernate.engine.jdbc.AbstractLobCreator
-
- All Implemented Interfaces:
LobCreator
- Direct Known Subclasses:
ContextualLobCreator,NonContextualLobCreator
public abstract class AbstractLobCreator extends java.lang.Object implements LobCreator
Convenient base class for proxy-based LobCreator for handling wrapping.
-
-
Constructor Summary
Constructors Constructor Description AbstractLobCreator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.sql.Blobwrap(java.sql.Blob blob)Wrap the given blob in a serializable wrapper.java.sql.Clobwrap(java.sql.Clob clob)Wrap the given clob in a serializable wrapper.java.sql.NClobwrap(java.sql.NClob nclob)Wrap the given nclob in a serializable wrapper.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.engine.jdbc.LobCreator
createBlob, createBlob, createClob, createClob, createNClob, createNClob
-
-
-
-
Method Detail
-
wrap
public java.sql.Blob wrap(java.sql.Blob blob)
Description copied from interface:LobCreatorWrap the given blob in a serializable wrapper.- Specified by:
wrapin interfaceLobCreator- Parameters:
blob- The blob to be wrapped.- Returns:
- The wrapped blob which will be castable to
Blobas well asWrappedBlob.
-
wrap
public java.sql.Clob wrap(java.sql.Clob clob)
Description copied from interface:LobCreatorWrap the given clob in a serializable wrapper.- Specified by:
wrapin interfaceLobCreator- Parameters:
clob- The clob to be wrapped.- Returns:
- The wrapped clob which will be castable to
Clobas well asWrappedClob.
-
wrap
public java.sql.NClob wrap(java.sql.NClob nclob)
Description copied from interface:LobCreatorWrap the given nclob in a serializable wrapper.- Specified by:
wrapin interfaceLobCreator- Parameters:
nclob- The nclob to be wrapped.- Returns:
- The wrapped nclob which will be castable to
NClobas well asWrappedNClob.
-
-