Berkeley DB Java Edition
version 1.5.1

com.sleepycat.bind.serial
Class SerialBinding

java.lang.Object
  |
  +--com.sleepycat.bind.serial.SerialBinding
All Implemented Interfaces:
EntryBinding

public class SerialBinding
extends Object
implements EntryBinding

A concrete EntryBinding that treats a key or data entry as a serialized object.

This binding stores objects in serialized object format. The deserialized objects are returned by the binding, and their Class must implement the Serializable interface.

Author:
Mark Hayes

Constructor Summary
SerialBinding(ClassCatalog classCatalog, Class baseClass)
          Creates a serial binding.
 
Method Summary
 Object entryToObject(DatabaseEntry entry)
          Deserialize an object from an entry buffer.
 Class getBaseClass()
          Returns the base class for this binding.
 void objectToEntry(Object object, DatabaseEntry entry)
          Serialize an object into an entry buffer.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SerialBinding

public SerialBinding(ClassCatalog classCatalog,
                     Class baseClass)
Creates a serial binding.

Parameters:
classCatalog - is the catalog to hold shared class information and for a database should be a StoredClassCatalog.
baseClass - is the base class for serialized objects stored using this binding -- all objects using this binding must be an instance of this class.
Method Detail

getBaseClass

public final Class getBaseClass()
Returns the base class for this binding.

Returns:
the base class for this binding.

entryToObject

public Object entryToObject(DatabaseEntry entry)
Deserialize an object from an entry buffer. May only be called for data that was serialized using objectToEntry(java.lang.Object, com.sleepycat.je.DatabaseEntry), since the fixed serialization header is assumed to not be included in the input data. SerialInput is used to deserialize the object.

Specified by:
entryToObject in interface EntryBinding
Parameters:
entry - is the input serialized entry.
Returns:
the output deserialized object.

objectToEntry

public void objectToEntry(Object object,
                          DatabaseEntry entry)
Serialize an object into an entry buffer. The fixed serialization header is not included in the output data to save space, and therefore to deserialize the data the complementary entryToObject(com.sleepycat.je.DatabaseEntry) method must be used. SerialOutput is used to serialize the object.

Specified by:
objectToEntry in interface EntryBinding
Parameters:
object - is the input deserialized object.
entry - is the output serialized entry.
Throws:
IllegalArgumentException - if the object is not an instance of the base class for this binding.

Berkeley DB Java Edition
version 1.5.1

Copyright (c) 1996-2004 Sleepycat Software, Inc. - All rights reserved.