Package com.db4o.marshall
Interface ReadContext
- 
- All Superinterfaces:
- Context,- ReadBuffer
 - All Known Subinterfaces:
- InternalReadContext,- ObjectIdContext,- ReferenceActivationContext
 - All Known Implementing Classes:
- AbstractReadContext,- CollectIdContext,- DeleteContextImpl,- ObjectHeaderContext,- ObjectIdContextImpl,- ObjectReferenceContext,- QueryingReadContext,- UnmarshallingContext
 
 public interface ReadContext extends Context, ReadBuffer this interface is passed to internal classTypeHandler4when instantiating objects.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectreadObject()Interprets the current position in the context as an ID and returns the object with this ID.java.lang.ObjectreadObject(TypeHandler4 handler)reads sub-objects, in cases where theTypeHandler4is known.- 
Methods inherited from interface com.db4o.marshall.ContextobjectContainer, transaction
 - 
Methods inherited from interface com.db4o.marshall.ReadBufferoffset, readBitMap, readByte, readBytes, readInt, readLong, seek
 
- 
 
- 
- 
- 
Method Detail- 
readObjectjava.lang.Object readObject() Interprets the current position in the context as an ID and returns the object with this ID.- Returns:
- the object
 
 - 
readObjectjava.lang.Object readObject(TypeHandler4 handler) reads sub-objects, in cases where theTypeHandler4is known.
 
- 
 
-