Interface PropertyMappingStandardFieldOptionsStep<S extends PropertyMappingStandardFieldOptionsStep<?>>
-
- Type Parameters:
S
- The "self" type (the actual exposed type of this step).
- All Superinterfaces:
PropertyMappingFieldOptionsStep<S>
,PropertyMappingStep
- All Known Subinterfaces:
PropertyMappingFullTextFieldOptionsStep
,PropertyMappingGenericFieldOptionsStep
,PropertyMappingKeywordFieldOptionsStep
,PropertyMappingNonFullTextFieldOptionsStep<S>
,PropertyMappingScaledNumberFieldOptionsStep
public interface PropertyMappingStandardFieldOptionsStep<S extends PropertyMappingStandardFieldOptionsStep<?>> extends PropertyMappingFieldOptionsStep<S>
The step in a property-to-index-field mapping where optional parameters can be set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S
projectable(Projectable projectable)
S
searchable(Searchable searchable)
-
Methods inherited from interface org.hibernate.search.mapper.pojo.mapping.definition.programmatic.PropertyMappingFieldOptionsStep
extractor, extractors, noExtractors, valueBinder, valueBinder, valueBridge, valueBridge, valueBridge
-
Methods inherited from interface org.hibernate.search.mapper.pojo.mapping.definition.programmatic.PropertyMappingStep
associationInverseSide, binder, binder, documentId, fullTextField, fullTextField, genericField, genericField, hostingType, indexedEmbedded, indexedEmbedded, indexingDependency, keywordField, keywordField, marker, marker, nonStandardField, nonStandardField, scaledNumberField, scaledNumberField
-
-
-
-
Method Detail
-
projectable
S projectable(Projectable projectable)
- Parameters:
projectable
- Whether projections are enabled for this field.- Returns:
this
, for method chaining.- See Also:
GenericField.projectable()
,Projectable
-
searchable
S searchable(Searchable searchable)
- Parameters:
searchable
- Whether this field should be searchable.- Returns:
this
, for method chaining.- See Also:
GenericField.searchable()
,Searchable
-
-