AppSearchSchema.DoublePropertyConfig.Builder


public final class AppSearchSchema.DoublePropertyConfig.Builder


Builder for DoublePropertyConfig.

Summary

Public constructors

Builder(@NonNull String propertyName)

Creates a new DoublePropertyConfig.Builder.

Public methods

@NonNull AppSearchSchema.DoublePropertyConfig

Constructs a new DoublePropertyConfig from the contents of this builder.

@NonNull AppSearchSchema.DoublePropertyConfig.Builder
setCardinality(int cardinality)

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

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

Sets a natural language description of this property.

Public constructors

Builder

Added in 1.1.0-alpha04
public Builder(@NonNull String propertyName)

Creates a new DoublePropertyConfig.Builder.

Public methods

build

Added in 1.1.0-alpha04
public @NonNull AppSearchSchema.DoublePropertyConfig build()

Constructs a new DoublePropertyConfig from the contents of this builder.

setCardinality

Added in 1.1.0-alpha04
public @NonNull AppSearchSchema.DoublePropertyConfig.Builder setCardinality(int cardinality)

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-alpha04
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SCHEMA_SET_DESCRIPTION)
public @NonNull AppSearchSchema.DoublePropertyConfig.Builder setDescription(@NonNull String description)

Sets a natural language description of this property.

For more details about the description field, see getDescription.