Interface FromDocumentValueConvertContext
-
- All Superinterfaces:
FromDocumentFieldValueConvertContext
- All Known Implementing Classes:
FromDocumentValueConvertContextImpl
public interface FromDocumentValueConvertContext extends FromDocumentFieldValueConvertContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
extension(FromDocumentValueConvertContextExtension<T> extension)
Extend the current context with the given extension, resulting in an extended context offering more options.-
Methods inherited from interface org.hibernate.search.engine.backend.types.converter.runtime.FromDocumentFieldValueConvertContext
extension
-
-
-
-
Method Detail
-
extension
<T> T extension(FromDocumentValueConvertContextExtension<T> extension)
Extend the current context with the given extension, resulting in an extended context offering more options.- Type Parameters:
T
- The type of context provided by the extension.- Parameters:
extension
- The extension to apply.- Returns:
- The extended context.
- Throws:
SearchException
- If the extension cannot be applied (wrong underlying technology, ...).
-
-