Builder


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

Builder for BlobHandlePropertyConfig.

Summary

Public constructors
Builder(propertyName: String)

Creates a new BlobHandlePropertyConfig.Builder.

Public methods
AppSearchSchema.BlobHandlePropertyConfig

Constructs a new BlobHandlePropertyConfig from the contents of this builder.

AppSearchSchema.BlobHandlePropertyConfig.Builder
setCardinality(cardinality: Int)

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

Public constructors

Builder

Builder(propertyName: String)

Creates a new BlobHandlePropertyConfig.Builder.

Parameters
propertyName String: This value cannot be null.

Public methods

build

fun build(): AppSearchSchema.BlobHandlePropertyConfig

Constructs a new BlobHandlePropertyConfig from the contents of this builder.

Return
AppSearchSchema.BlobHandlePropertyConfig This value cannot be null.

setCardinality

fun setCardinality(cardinality: Int): AppSearchSchema.BlobHandlePropertyConfig.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.BlobHandlePropertyConfig.Builder This value cannot be null.