Uses of Interface
org.hibernate.search.engine.backend.types.IndexFieldType
-
-
Uses of IndexFieldType in org.hibernate.search.engine.backend.document.model.dsl
Methods in org.hibernate.search.engine.backend.document.model.dsl with parameters of type IndexFieldType Modifier and Type Method Description <F> IndexSchemaFieldOptionsStep<?,IndexFieldReference<F>>
IndexSchemaElement. field(String relativeFieldName, IndexFieldType<F> type)
Add a field to this index schema element with the given type.IndexSchemaFieldTemplateOptionsStep<?>
IndexSchemaElement. fieldTemplate(String templateName, IndexFieldType<?> type)
Add a field template to this index schema element with the given type. -
Uses of IndexFieldType in org.hibernate.search.engine.backend.document.model.dsl.spi
Methods in org.hibernate.search.engine.backend.document.model.dsl.spi with parameters of type IndexFieldType Modifier and Type Method Description <F> IndexSchemaFieldOptionsStep<?,IndexFieldReference<F>>
IndexCompositeNodeBuilder. addField(String relativeFieldName, IndexFieldInclusion inclusion, IndexFieldType<F> indexFieldType)
Create a new field and add it to the current builder.IndexSchemaFieldTemplateOptionsStep<?>
IndexCompositeNodeBuilder. addFieldTemplate(String templateName, IndexFieldInclusion inclusion, IndexFieldType<?> indexFieldType, String prefix)
Create a new field template and add it to the current builder. -
Uses of IndexFieldType in org.hibernate.search.engine.backend.types.dsl
Methods in org.hibernate.search.engine.backend.types.dsl that return IndexFieldType Modifier and Type Method Description IndexFieldType<F>
IndexFieldTypeFinalStep. toIndexFieldType()
Create anIndexFieldType
instance matching the definition given in the previous DSL steps. -
Uses of IndexFieldType in org.hibernate.search.engine.backend.types.spi
Classes in org.hibernate.search.engine.backend.types.spi that implement IndexFieldType Modifier and Type Class Description class
AbstractIndexValueFieldType<SC extends SearchIndexScope<?>,N extends SearchIndexValueFieldContext<SC>,F>
-