AppSearchSchema.BytesPropertyConfig.Builder


class AppSearchSchema.BytesPropertyConfig.Builder


Builder for BytesPropertyConfig.

Summary

Public constructors

Builder(propertyName: String)

Creates a new BytesPropertyConfig.Builder.

Public functions

AppSearchSchema.BytesPropertyConfig

Constructs a new BytesPropertyConfig from the contents of this builder.

AppSearchSchema.BytesPropertyConfig.Builder
setCardinality(cardinality: Int)

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

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

Sets a natural language description of this property.

Public constructors

Builder

Added in 1.1.0-alpha05
Builder(propertyName: String)

Creates a new BytesPropertyConfig.Builder.

Public functions

build

Added in 1.1.0-alpha05
fun build(): AppSearchSchema.BytesPropertyConfig

Constructs a new BytesPropertyConfig from the contents of this builder.

setCardinality

Added in 1.1.0-alpha05
fun setCardinality(cardinality: Int): AppSearchSchema.BytesPropertyConfig.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-alpha05
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SCHEMA_SET_DESCRIPTION)
fun setDescription(description: String): AppSearchSchema.BytesPropertyConfig.Builder

Sets a natural language description of this property.

For more details about the description field, see getDescription.