Serialized Form
Package org.apache.excalibur.store.impl |
serialVersionUID: -1216913992804571313L
readExternal
public void readExternal(java.io.ObjectInput in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- 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. The readExternal method must read the
values in the same sequence and with the same types as were written by writeExternal.
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeExternal
public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException
- 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.
- Throws:
java.io.IOException
Copyright © 1997-2011 Apache Software Foundation. All Rights Reserved.