Added in API level 31

Builder

class Builder
kotlin.Any
   ↳ android.app.appsearch.AppSearchSchema.BytesPropertyConfig.Builder

Builder for BytesPropertyConfig.

Summary

Public constructors
Builder(propertyName: String)

Creates a new BytesPropertyConfig.Builder.

Public methods
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).

Public constructors

Builder

Added in API level 31
Builder(propertyName: String)

Creates a new BytesPropertyConfig.Builder.

Parameters
propertyName String: This value cannot be null.

Public methods

build

Added in API level 31
fun build(): AppSearchSchema.BytesPropertyConfig

Constructs a new BytesPropertyConfig from the contents of this builder.

Return
AppSearchSchema.BytesPropertyConfig This value cannot be null.

setCardinality

Added in API level 31
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 android.app.appsearch.AppSearchSchema.PropertyConfig#CARDINALITY_OPTIONAL.

Parameters
cardinality Int: Value is android.app.appsearch.AppSearchSchema.PropertyConfig#CARDINALITY_REPEATED, android.app.appsearch.AppSearchSchema.PropertyConfig#CARDINALITY_OPTIONAL, or android.app.appsearch.AppSearchSchema.PropertyConfig#CARDINALITY_REQUIRED
Return
AppSearchSchema.BytesPropertyConfig.Builder This value cannot be null.