Uses of Class
org.hibernate.search.engine.backend.document.model.spi.IndexFieldInclusion
-
Packages that use IndexFieldInclusion Package Description org.hibernate.search.engine.backend.document.model.dsl.spi org.hibernate.search.engine.backend.document.model.spi -
-
Uses of IndexFieldInclusion 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 IndexFieldInclusion 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.IndexSchemaNamedPredicateOptionsStep
IndexCompositeNodeBuilder. addNamedPredicate(String relativeNamedPredicateName, IndexFieldInclusion inclusion, NamedPredicateProvider provider)
Create a new named predicate and add it to the current builder.IndexObjectFieldBuilder
IndexCompositeNodeBuilder. addObjectField(String relativeFieldName, IndexFieldInclusion inclusion, ObjectStructure structure)
Create a new object field and add it to the current builder.IndexSchemaFieldTemplateOptionsStep<?>
IndexCompositeNodeBuilder. addObjectFieldTemplate(String templateName, ObjectStructure structure, String prefix, IndexFieldInclusion inclusion)
Create a new object field template and add it to the current builder. -
Uses of IndexFieldInclusion in org.hibernate.search.engine.backend.document.model.spi
Fields in org.hibernate.search.engine.backend.document.model.spi declared as IndexFieldInclusion Modifier and Type Field Description protected IndexFieldInclusion
AbstractIndexField. inclusion
Methods in org.hibernate.search.engine.backend.document.model.spi that return IndexFieldInclusion Modifier and Type Method Description IndexFieldInclusion
IndexFieldInclusion. compose(IndexFieldInclusion childInclusion)
IndexFieldInclusion
AbstractIndexField. inclusion()
IndexFieldInclusion
AbstractIndexFieldTemplate. inclusion()
IndexFieldInclusion
AbstractIndexRoot. inclusion()
IndexFieldInclusion
IndexNode. inclusion()
static IndexFieldInclusion
IndexFieldInclusion. valueOf(String name)
Returns the enum constant of this type with the specified name.static IndexFieldInclusion[]
IndexFieldInclusion. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.search.engine.backend.document.model.spi with parameters of type IndexFieldInclusion Modifier and Type Method Description IndexFieldInclusion
IndexFieldInclusion. compose(IndexFieldInclusion childInclusion)
protected abstract F
AbstractIndexFieldTemplate. createNode(C parent, String relativePath, FT type, IndexFieldInclusion inclusion, boolean multiValued)
abstract <T> T
IndexFieldFilter. filter(T field, IndexFieldInclusion inclusion)
Constructors in org.hibernate.search.engine.backend.document.model.spi with parameters of type IndexFieldInclusion Constructor Description AbstractIndexField(C parent, String relativeFieldName, NT type, IndexFieldInclusion inclusion, boolean multiValued)
AbstractIndexFieldTemplate(C declaringParent, SimpleGlobPattern absolutePathGlob, FT type, IndexFieldInclusion inclusion, boolean multiValued)
AbstractIndexObjectField(C parent, String relativeFieldName, NT type, IndexFieldInclusion inclusion, boolean multiValued, Map<String,F> notYetInitializedStaticChildren)
AbstractIndexValueField(C parent, String relativeFieldName, FT type, IndexFieldInclusion inclusion, boolean multiValued)
-