类 SerializableNClobProxy
- java.lang.Object
-
- org.hibernate.engine.jdbc.SerializableClobProxy
-
- org.hibernate.engine.jdbc.SerializableNClobProxy
-
- 所有已实现的接口:
Serializable,InvocationHandler
public class SerializableNClobProxy extends SerializableClobProxy
Manages aspects of proxying java.sql.NClobs to add serializability.- 作者:
- Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 限定符 构造器 说明 protectedSerializableNClobProxy(Clob clob)
-
方法概要
所有方法 静态方法 具体方法 已过时的方法 修饰符和类型 方法 说明 static NClobgenerateProxy(NClob nclob)Generates a SerializableNClobProxy proxy wrapping the provided NClob object.static ClassLoadergetProxyClassLoader()Determines the appropriate class loader to which the generated proxy should be scoped.static booleanisNClob(Clob clob)已过时。ORM baselines on JDK 1.6, so optional support for NClob (JDK 1,6 addition) is no longer needed.-
从类继承的方法 org.hibernate.engine.jdbc.SerializableClobProxy
generateProxy, getWrappedClob, invoke
-
-
-
-
构造器详细资料
-
SerializableNClobProxy
protected SerializableNClobProxy(Clob clob)
- 参数:
clob- TheClobto be wrapped.- 另请参阅:
SerializableClobProxy.generateProxy(java.sql.Clob)
-
-
方法详细资料
-
isNClob
@Deprecated public static boolean isNClob(Clob clob)
已过时。ORM baselines on JDK 1.6, so optional support for NClob (JDK 1,6 addition) is no longer needed.Deprecated.- 参数:
clob- The possible NClob reference- 返回:
trueif the the Clob is a NClob as well
-
generateProxy
public static NClob generateProxy(NClob nclob)
Generates a SerializableNClobProxy proxy wrapping the provided NClob object.- 参数:
nclob- The NClob to wrap.- 返回:
- The generated proxy.
-
getProxyClassLoader
public static ClassLoader getProxyClassLoader()
Determines the appropriate class loader to which the generated proxy should be scoped.- 返回:
- The class loader appropriate for proxy construction.
-
-