类 AbstractLobCreator
- java.lang.Object
-
- org.hibernate.engine.jdbc.AbstractLobCreator
-
- 所有已实现的接口:
LobCreator
public abstract class AbstractLobCreator extends Object implements LobCreator
Convenient base class for proxy-based LobCreator for handling wrapping.- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 AbstractLobCreator()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Blobwrap(Blob blob)Wrap the given blob in a serializable wrapper.Clobwrap(Clob clob)Wrap the given clob in a serializable wrapper.NClobwrap(NClob nclob)Wrap the given nclob in a serializable wrapper.-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.hibernate.engine.jdbc.LobCreator
createBlob, createBlob, createClob, createClob, createNClob, createNClob
-
-
-
-
方法详细资料
-
wrap
public Blob wrap(Blob blob)
从接口复制的说明:LobCreatorWrap the given blob in a serializable wrapper.- 指定者:
wrap在接口中LobCreator- 参数:
blob- The blob to be wrapped.- 返回:
- The wrapped blob which will be castable to
Blobas well asWrappedBlob.
-
wrap
public Clob wrap(Clob clob)
从接口复制的说明:LobCreatorWrap the given clob in a serializable wrapper.- 指定者:
wrap在接口中LobCreator- 参数:
clob- The clob to be wrapped.- 返回:
- The wrapped clob which will be castable to
Clobas well asWrappedClob.
-
wrap
public NClob wrap(NClob nclob)
从接口复制的说明:LobCreatorWrap the given nclob in a serializable wrapper.- 指定者:
wrap在接口中LobCreator- 参数:
nclob- The nclob to be wrapped.- 返回:
- The wrapped nclob which will be castable to
NClobas well asWrappedNClob.
-
-