Class PojoIndexingProcessor<T>
- java.lang.Object
-
- org.hibernate.search.mapper.pojo.processing.impl.PojoIndexingProcessor<T>
-
- Type Parameters:
T- The processed type
- All Implemented Interfaces:
AutoCloseable,ToStringTreeAppendable
- Direct Known Subclasses:
PojoIndexingProcessorCastedTypeNode,PojoIndexingProcessorContainerElementNode,PojoIndexingProcessorMultiNode,PojoIndexingProcessorOriginalTypeNode,PojoIndexingProcessorPropertyBridgeNode,PojoIndexingProcessorPropertyNode,PojoIndexingProcessorTypeBridgeNode,PojoIndexingProcessorValueBridgeNode
public abstract class PojoIndexingProcessor<T> extends Object implements AutoCloseable, ToStringTreeAppendable
A POJO processor responsible for transferring data from the POJO to a document to index.
-
-
Constructor Summary
Constructors Constructor Description PojoIndexingProcessor()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidclose()static <T> PojoIndexingProcessor<T>noOp()abstract voidprocess(DocumentElement target, T source, PojoIndexingProcessorRootContext context)StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.hibernate.search.util.common.spi.ToStringTreeAppendable
appendTo, toStringTree
-
-
-
-
Method Detail
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable
-
process
public abstract void process(DocumentElement target, T source, PojoIndexingProcessorRootContext context)
-
noOp
public static <T> PojoIndexingProcessor<T> noOp()
-
-