Uses of Class
org.hibernate.search.engine.backend.types.converter.spi.ProjectionConverter
-
-
Uses of ProjectionConverter in org.hibernate.search.engine.backend.document.model.spi
Methods in org.hibernate.search.engine.backend.document.model.spi that return ProjectionConverter Modifier and Type Method Description ProjectionConverter<String,?>
IndexIdentifier. projectionConverter()
Constructors in org.hibernate.search.engine.backend.document.model.spi with parameters of type ProjectionConverter Constructor Description IndexIdentifier(DslConverter<?,String> dslConverter, ProjectionConverter<String,?> projectionConverter)
-
Uses of ProjectionConverter in org.hibernate.search.engine.backend.types.converter.spi
Methods in org.hibernate.search.engine.backend.types.converter.spi that return ProjectionConverter Modifier and Type Method Description static <F> ProjectionConverter<F,F>
ProjectionConverter. passThrough(Class<F> fieldAndValueType)
<T> ProjectionConverter<F,? extends T>
ProjectionConverter. withConvertedType(Class<T> expectedType, EventContextProvider eventContextProvider)
Check whether projected values can be assigned to the given type, and returns the projection converter with an appropriate type.Methods in org.hibernate.search.engine.backend.types.converter.spi with parameters of type ProjectionConverter Modifier and Type Method Description boolean
ProjectionConverter. isCompatibleWith(ProjectionConverter<?,?> other)
-
Uses of ProjectionConverter in org.hibernate.search.engine.backend.types.spi
Methods in org.hibernate.search.engine.backend.types.spi that return ProjectionConverter Modifier and Type Method Description ProjectionConverter<F,?>
AbstractIndexValueFieldType. projectionConverter()
ProjectionConverter<F,F>
AbstractIndexValueFieldType. rawProjectionConverter()
-
Uses of ProjectionConverter in org.hibernate.search.engine.search.common.spi
Fields in org.hibernate.search.engine.search.common.spi declared as ProjectionConverter Modifier and Type Field Description static ProjectionConverter<String,String>
SearchIndexIdentifierContext. RAW_PROJECTION_CONVERTER
Methods in org.hibernate.search.engine.search.common.spi that return ProjectionConverter Modifier and Type Method Description ProjectionConverter<F,?>
AbstractMultiIndexSearchIndexValueFieldContext. projectionConverter()
ProjectionConverter<String,?>
MultiIndexSearchIndexIdentifierContext. projectionConverter()
ProjectionConverter<String,?>
SearchIndexIdentifierContext. projectionConverter()
ProjectionConverter<F,?>
SearchIndexValueFieldTypeContext. projectionConverter()
default ProjectionConverter<F,?>
SearchIndexValueFieldTypeContext. projectionConverter(ValueConvert convert)
ProjectionConverter<F,F>
AbstractMultiIndexSearchIndexValueFieldContext. rawProjectionConverter()
ProjectionConverter<F,F>
SearchIndexValueFieldTypeContext. rawProjectionConverter()
-
Uses of ProjectionConverter in org.hibernate.search.engine.search.projection.spi
Methods in org.hibernate.search.engine.search.projection.spi with parameters of type ProjectionConverter Modifier and Type Method Description List<V>
ListProjectionAccumulator. finish(List<F> accumulated, ProjectionConverter<? super F,? extends V> converter, FromDocumentValueConvertContext context)
R
ProjectionAccumulator. finish(U accumulated, ProjectionConverter<? super F,? extends V> converter, FromDocumentValueConvertContext context)
Finishes the collecting, converting the accumulated container into the final result.V
SingleValuedProjectionAccumulator. finish(F accumulated, ProjectionConverter<? super F,? extends V> converter, FromDocumentValueConvertContext context)
-