Uses of Class
java.beans.Encoder
-
Packages that use Encoder 软件包 描述 java.beans 包含与开发 bean相关的类 - 基于JavaBeans™体系结构的组件。 -
-
Uses of Encoder in java.beans
Subclasses of Encoder in java.beans 变量和类型 类 描述 class
XMLEncoder
所述XMLEncoder
类是互补替代ObjectOutputStream
,并且可以用于产生以相同的方式,该一个 JavaBean的文本表示ObjectOutputStream
可以用来创建的二进制表示Serializable
对象。Methods in java.beans with parameters of type Encoder 变量和类型 方法 描述 protected void
DefaultPersistenceDelegate. initialize(类<?> type, Object oldInstance, Object newInstance, Encoder out)
initialize
方法的此默认实现假定此类对象中保存的所有状态都是通过“setter”和“getter”方法的匹配对按Introspector返回的顺序公开的。protected void
PersistenceDelegate. initialize(类<?> type, Object oldInstance, Object newInstance, Encoder out)
在newInstance
上生成一系列带有副作用的语句,以便新实例 等效于oldInstance
。protected Expression
DefaultPersistenceDelegate. instantiate(Object oldInstance, Encoder out)
instantiate
方法的此默认实现返回一个包含预定义方法名称“new”的表达式,该表达式表示使用DefaultPersistenceDelegate
构造函数中指定的参数调用构造函数。protected abstract Expression
PersistenceDelegate. instantiate(Object oldInstance, Encoder out)
返回值为oldInstance
的表达式。void
PersistenceDelegate. writeObject(Object oldInstance, Encoder out)
ThewriteObject
is a single entry point to the persistence and is used by anEncoder
in the traditional mode of delegation.
-