Interface WrappingStorageUtility.SerializationWrapper

All Superinterfaces:
Externalizable
All Known Implementing Classes:
CompactInstanceWrapper, TaggedSerializationWrapper
Enclosing class:
WrappingStorageUtility

public static interface WrappingStorageUtility.SerializationWrapper
extends Externalizable
Defines an alternate serialization scheme. The alternate scheme is implemented in this class's readExternal and writeExternal methods. (kind of like ExternalizableWrapper -- but not quite a drop-in replacement)
  • Method Details

    • setData

      void setData​(Externalizable e)
      set the underlying object (to be followed by a call to writeExternal)
      Parameters:
      e -
    • getData

      Externalizable getData()
      retrieve the underlying object (to be followed by a call to readExternal)
      Returns:
    • baseType

      Class baseType()
      return type of underlying object
      Returns:
    • clean

      void clean()