AppSearchSchema.DoublePropertyConfig.Builder


class AppSearchSchema.DoublePropertyConfig.Builder


Builder for DoublePropertyConfig.

Summary

Public constructors

Builder(propertyName: String)

Creates a new DoublePropertyConfig.Builder.

Public functions

AppSearchSchema.DoublePropertyConfig

Constructs a new DoublePropertyConfig from the contents of this builder.

AppSearchSchema.DoublePropertyConfig.Builder
setCardinality(cardinality: Int)

Sets the cardinality of the property (whether it is optional, required or repeated).

AppSearchSchema.DoublePropertyConfig.Builder
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SCHEMA_SET_DESCRIPTION)
@ExperimentalAppSearchApi
setDescription(description: String)

Sets a natural language description of this property.

AppSearchSchema.DoublePropertyConfig.Builder
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SCHEMA_SCORABLE_PROPERTY_CONFIG)
@ExperimentalAppSearchApi
setScoringEnabled(scoringEnabled: Boolean)

Sets the property enabled or disabled for scoring.

Public constructors

Builder

Added in 1.1.0-alpha07
Builder(propertyName: String)

Creates a new DoublePropertyConfig.Builder.

Public functions

build

Added in 1.1.0-alpha07
fun build(): AppSearchSchema.DoublePropertyConfig

Constructs a new DoublePropertyConfig from the contents of this builder.

setCardinality

Added in 1.1.0-alpha07
fun setCardinality(cardinality: Int): AppSearchSchema.DoublePropertyConfig.Builder

Sets the cardinality of the property (whether it is optional, required or repeated).

If this method is not called, the default cardinality is CARDINALITY_OPTIONAL.

setDescription

Added in 1.1.0-alpha07
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SCHEMA_SET_DESCRIPTION)
@ExperimentalAppSearchApi
fun setDescription(description: String): AppSearchSchema.DoublePropertyConfig.Builder

Sets a natural language description of this property.

For more details about the description field, see getDescription.

setScoringEnabled

Added in 1.1.0-alpha07
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SCHEMA_SCORABLE_PROPERTY_CONFIG)
@ExperimentalAppSearchApi
fun setScoringEnabled(scoringEnabled: Boolean): AppSearchSchema.DoublePropertyConfig.Builder

Sets the property enabled or disabled for scoring.

If this method is not called, the default value is false.

If enabled, it can be used in the advanced ranking expression via the function of 'getScorableProperty'.

For the detailed documentation, see setRankingStrategy.