Interface StandardIndexFieldTypeOptionsStep<S extends StandardIndexFieldTypeOptionsStep<?,F>,F>
- Type Parameters:
S
- The "self" type (the actual exposed type of this step).F
- The type of field values.
- All Superinterfaces:
IndexFieldTypeConverterStep<S,
,F> IndexFieldTypeFinalStep<F>
,IndexFieldTypeOptionsStep<S,
F>
- All Known Subinterfaces:
ElasticsearchStandardIndexFieldTypeOptionsStep<S,
,F> LuceneStandardIndexFieldTypeOptionsStep<S,
,F> ScaledNumberIndexFieldTypeOptionsStep<S,
,F> StringIndexFieldTypeOptionsStep<S>
public interface StandardIndexFieldTypeOptionsStep<S extends StandardIndexFieldTypeOptionsStep<?,F>,F>
extends IndexFieldTypeOptionsStep<S,F>
The initial and final step in a "standard" index field type definition, where optional parameters can be set.
"Standard" index field types are types exposing a common set capabilities that are considered "standard", such as search or projection.
-
Method Summary
Modifier and TypeMethodDescriptionaggregable
(Aggregable aggregable) indexNullAs
(F indexNullAs) projectable
(Projectable projectable) searchable
(Searchable searchable) Methods inherited from interface org.hibernate.search.engine.backend.types.dsl.IndexFieldTypeConverterStep
dslConverter, projectionConverter
Methods inherited from interface org.hibernate.search.engine.backend.types.dsl.IndexFieldTypeFinalStep
toIndexFieldType
-
Method Details
-
projectable
- Parameters:
projectable
- Whether projections are enabled for this field.- Returns:
this
, for method chaining.- See Also:
-
sortable
- Parameters:
sortable
- Whether this field should be sortable.- Returns:
this
, for method chaining.- See Also:
-
indexNullAs
- Parameters:
indexNullAs
- A value used instead of null values when indexing.- Returns:
this
, for method chaining.
-
searchable
- Parameters:
searchable
- Whether this field should be searchable.- Returns:
this
, for method chaining.- See Also:
-
aggregable
- Parameters:
aggregable
- Whether aggregations are enabled for this field.- Returns:
this
, for method chaining.- See Also:
-