What is Externalizable Interface in Java ?

Externalizable interface extends Serializable interface in Java. It is used for giving the Class control over saving and restoring the contents of its instances.

A class implements methods writeExternal() and readExternal() to store and restore the object.



You May Interest

What is the Difference Between a Nested Class and an Inner Class ...

What are the Differences Between a Checked and Unchecked Exceptio ...

What is the Difference Between remove Methods of Collection and I ...

What are the Disadvantages of Multithreading in Java ?

What is Template Method Design Pattern in Java ?