AppSearchSchema.BooleanPropertyConfig.Builder

public static final class AppSearchSchema.BooleanPropertyConfig.Builder
extends Object

java.lang.Object
   ↳ android.app.appsearch.AppSearchSchema.BooleanPropertyConfig.Builder


Builder for BooleanPropertyConfig.

Summary

Public constructors

Builder(String propertyName)

Creates a new BooleanPropertyConfig.Builder.

Public methods

AppSearchSchema.BooleanPropertyConfig build()

Constructs a new BooleanPropertyConfig from the contents of this builder.

AppSearchSchema.BooleanPropertyConfig.Builder setCardinality(int cardinality)

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

Inherited methods

Public constructors

Builder

Added in API level 31
public Builder (String propertyName)

Creates a new BooleanPropertyConfig.Builder.

Parameters
propertyName String: This value cannot be null.

Public methods

build

Added in API level 31
public AppSearchSchema.BooleanPropertyConfig build ()

Constructs a new BooleanPropertyConfig from the contents of this builder.

Returns
AppSearchSchema.BooleanPropertyConfig This value cannot be null.

setCardinality

Added in API level 31
public AppSearchSchema.BooleanPropertyConfig.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 AppSearchSchema.PropertyConfig.CARDINALITY_OPTIONAL.

Parameters
cardinality int: Value is AppSearchSchema.PropertyConfig.CARDINALITY_REPEATED, AppSearchSchema.PropertyConfig.CARDINALITY_OPTIONAL, or AppSearchSchema.PropertyConfig.CARDINALITY_REQUIRED

Returns
AppSearchSchema.BooleanPropertyConfig.Builder This value cannot be null.