Package com.yahoo.document.serialization
Interface DocumentUpdateReader
-
- All Known Subinterfaces:
DocumentDeserializer
- All Known Implementing Classes:
VespaDocumentDeserializer6
,VespaDocumentDeserializerHead
,VespaXMLUpdateReader
public interface DocumentUpdateReader
This interface is used to implement custom deserialization of document updates.- Author:
- Thomas Gundersen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
read(DocumentUpdate update)
void
read(AddFieldPathUpdate update)
void
read(AssignFieldPathUpdate update)
void
read(FieldPathUpdate update)
void
read(RemoveFieldPathUpdate update)
void
read(FieldUpdate update)
DocumentId
readDocumentId()
DocumentType
readDocumentType()
-
-
-
Method Detail
-
read
void read(DocumentUpdate update)
-
read
void read(FieldUpdate update)
-
read
void read(FieldPathUpdate update)
-
read
void read(AssignFieldPathUpdate update)
-
read
void read(AddFieldPathUpdate update)
-
read
void read(RemoveFieldPathUpdate update)
-
readDocumentId
DocumentId readDocumentId()
-
readDocumentType
DocumentType readDocumentType()
-
-