Java java.io Externalizable fields, constructors, methods, implement or subclass

Example usage for Java java.io Externalizable fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.io Externalizable.

The text is from its open source code.

Implementation

java.io.Externalizable has the following implementations.
Click this link to see all its implementation.

Method

ClassgetClass()
Returns the runtime class of this Object .
voidreadExternal(ObjectInput in)
The object implements the readExternal method to restore its contents by calling the methods of DataInput for primitive types and readObject for objects, strings and arrays.
voidwriteExternal(ObjectOutput out)
The object implements the writeExternal method to save its contents by calling the methods of DataOutput for its primitive values or calling the writeObject method of ObjectOutput for objects, strings, and arrays.