Uses of Interface
org.hibernate.search.engine.backend.document.model.dsl.IndexSchemaFieldOptionsStep
-
Packages that use IndexSchemaFieldOptionsStep Package Description org.hibernate.search.engine.backend.document.model.dsl org.hibernate.search.engine.backend.document.model.dsl.spi -
-
Uses of IndexSchemaFieldOptionsStep in org.hibernate.search.engine.backend.document.model.dsl
Classes in org.hibernate.search.engine.backend.document.model.dsl with type parameters of type IndexSchemaFieldOptionsStep Modifier and Type Interface Description interfaceIndexSchemaFieldOptionsStep<S extends IndexSchemaFieldOptionsStep<?,R>,R>The final step in the definition of a field in the index schema, where a reference to the field can be retrieved, optionally setting some parameters beforehand.Subinterfaces of IndexSchemaFieldOptionsStep in org.hibernate.search.engine.backend.document.model.dsl Modifier and Type Interface Description interfaceIndexSchemaObjectFieldAn object field in the index schema, allowing the definition of child fields, customization of some characteristics of this object field such asmulti-valued-ness, and the retrieval ofa field referenceto be used when indexing.Methods in org.hibernate.search.engine.backend.document.model.dsl that return IndexSchemaFieldOptionsStep Modifier and Type Method Description <F> IndexSchemaFieldOptionsStep<?,IndexFieldReference<F>>IndexSchemaElement. field(String relativeFieldName, Function<? super IndexFieldTypeFactory,? extends IndexFieldTypeFinalStep<F>> typeContributor)Add a field to this index schema element with the type to be defined by the given function.default <F> IndexSchemaFieldOptionsStep<?,IndexFieldReference<F>>IndexSchemaElement. field(String relativeFieldName, IndexFieldTypeFinalStep<F> dslFinalStep)Add a field to this index schema element with the given almost-built type.<F> IndexSchemaFieldOptionsStep<?,IndexFieldReference<F>>IndexSchemaElement. field(String relativeFieldName, IndexFieldType<F> type)Add a field to this index schema element with the given type. -
Uses of IndexSchemaFieldOptionsStep in org.hibernate.search.engine.backend.document.model.dsl.spi
Methods in org.hibernate.search.engine.backend.document.model.dsl.spi that return IndexSchemaFieldOptionsStep Modifier and Type Method Description <F> IndexSchemaFieldOptionsStep<?,IndexFieldReference<F>>IndexSchemaObjectNodeBuilder. addField(String relativeFieldName, IndexFieldInclusion inclusion, IndexFieldType<F> indexFieldType)Create a new field and add it to the current builder.
-