AppSearchSchema.BooleanPropertyConfig
Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
AppSearchSchema.BooleanPropertyConfig is a configuration for a property containing a boolean value.
It has a nested class, AppSearchSchema.BooleanPropertyConfig.Builder, for building instances of this configuration.
It inherits constants for specifying the cardinality of the property (optional, repeated, or required) from AppSearchSchema.PropertyConfig.
It inherits methods for accessing the cardinality, description, name, and other object properties from AppSearchSchema.PropertyConfig and java.lang.Object.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["`AppSearchSchema.BooleanPropertyConfig` configures properties containing boolean values. It uses `AppSearchSchema.PropertyConfig` which defines property characteristics: `CARDINALITY_OPTIONAL` (0-1 value), `CARDINALITY_REPEATED` (0 or more), and `CARDINALITY_REQUIRED` (exactly one). Key methods from `PropertyConfig` are `getCardinality` to get the property's cardinality, `getDescription`, `getName` and `equals` for comparison. `AppSearchSchema.BooleanPropertyConfig.Builder` builds these configurations. `Object` class methods are inherited.\n"]]