Interface SearchIndexValueFieldTypeContext<SC extends SearchIndexScope<?>,N,F>
-
- Type Parameters:
SC- The type of the backend-specific search scope.N- The type representing the targeted index node.F- The indexed field value type.
- All Superinterfaces:
SearchIndexNodeTypeContext<SC,N>
- All Known Implementing Classes:
AbstractIndexValueFieldType,AbstractMultiIndexSearchIndexValueFieldContext
public interface SearchIndexValueFieldTypeContext<SC extends SearchIndexScope<?>,N,F> extends SearchIndexNodeTypeContext<SC,N>
Information about the type of a value (non-object) field targeted by search, be it in a projection, a predicate, a sort, ...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DslConverter<?,F>dslConverter()default DslConverter<?,F>dslConverter(ValueConvert convert)ProjectionConverter<F,?>projectionConverter()default ProjectionConverter<F,?>projectionConverter(ValueConvert convert)DslConverter<F,F>rawDslConverter()ProjectionConverter<F,F>rawProjectionConverter()Class<F>valueClass()-
Methods inherited from interface org.hibernate.search.engine.search.common.spi.SearchIndexNodeTypeContext
queryElementFactory
-
-
-
-
Method Detail
-
dslConverter
DslConverter<?,F> dslConverter()
-
rawDslConverter
DslConverter<F,F> rawDslConverter()
-
dslConverter
default DslConverter<?,F> dslConverter(ValueConvert convert)
-
projectionConverter
ProjectionConverter<F,?> projectionConverter()
-
rawProjectionConverter
ProjectionConverter<F,F> rawProjectionConverter()
-
projectionConverter
default ProjectionConverter<F,?> projectionConverter(ValueConvert convert)
-
-