Builder
class Builder
kotlin.Any | |
↳ | android.app.appsearch.AppSearchSchema.BooleanPropertyConfig.Builder |
Builder for BooleanPropertyConfig
.
Summary
Public constructors | |
---|---|
Creates a new |
Public methods | |
---|---|
AppSearchSchema.BooleanPropertyConfig |
build() Constructs a new |
AppSearchSchema.BooleanPropertyConfig.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 BooleanPropertyConfig.Builder
.
Parameters | |
---|---|
propertyName |
String: This value cannot be null . |
Public methods
build
fun build(): AppSearchSchema.BooleanPropertyConfig
Constructs a new BooleanPropertyConfig
from the contents of this builder.
Return | |
---|---|
AppSearchSchema.BooleanPropertyConfig |
This value cannot be null . |
setCardinality
fun setCardinality(cardinality: Int): AppSearchSchema.BooleanPropertyConfig.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
.
Return | |
---|---|
AppSearchSchema.BooleanPropertyConfig.Builder |
This value cannot be null . |