Summary: Ctors | Methods | Inherited Methods
public
static
final
class
AppSearchSchema.BytesPropertyConfig.Builder
extends Object
| java.lang.Object | |
| ↳ | android.app.appsearch.AppSearchSchema.BytesPropertyConfig.Builder |
Builder for BytesPropertyConfig.
Summary
Public constructors | |
|---|---|
Builder(String propertyName)
Creates a new |
|
Public methods | |
|---|---|
AppSearchSchema.BytesPropertyConfig
|
build()
Constructs a new |
AppSearchSchema.BytesPropertyConfig.Builder
|
setCardinality(int cardinality)
The cardinality of the property (whether it is optional, required or repeated). |
Inherited methods | |||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
From class
| |||||||||||||||||||||||
Public constructors
Builder
public Builder (String propertyName)
Creates a new BytesPropertyConfig.Builder.
| Parameters | |
|---|---|
propertyName |
String: This value cannot be null. |
Public methods
build
public AppSearchSchema.BytesPropertyConfig build ()
Constructs a new BytesPropertyConfig from the contents of this builder.
| Returns | |
|---|---|
AppSearchSchema.BytesPropertyConfig |
This value cannot be null. |
setCardinality
public AppSearchSchema.BytesPropertyConfig.Builder setCardinality (int cardinality)
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.BytesPropertyConfig.Builder |
This value cannot be null. |