AI-generated Key Takeaways
-
AppSearchSchema.LongPropertyConfig is used to configure a property containing a 64-bit integer.
-
A Builder class is available for constructing AppSearchSchema.LongPropertyConfig instances.
-
Content within this property can either not be indexed or indexed for numeric search range queries.
-
Inherited methods from PropertyConfig include obtaining cardinality, description, and name of the property.
Configuration for a property containing a 64-bit integer.
Nested Class Summary
| class | AppSearchSchema.LongPropertyConfig.Builder | Builder for
AppSearchSchema.LongPropertyConfig. |
|
Constant Summary
| int | INDEXING_TYPE_NONE | Content in this property will not be indexed. |
| int | INDEXING_TYPE_RANGE | Content in this property will be indexed and can be fetched via numeric search range query. |
Inherited Constant Summary
Public Method Summary
| int |
getIndexingType()
Returns how the property is indexed.
|
Inherited Method Summary
Constants
public static final int INDEXING_TYPE_NONE
Content in this property will not be indexed.
public static final int INDEXING_TYPE_RANGE
Content in this property will be indexed and can be fetched via numeric search range query.
For example, a property with 1024 should match numeric search range query [0, 2000].
Public Methods
public int getIndexingType ()
Returns how the property is indexed.