AppSearchSchema.LongPropertyConfig

public static final class AppSearchSchema.LongPropertyConfig extends AppSearchSchema.PropertyConfig

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.

Constant Value: 0

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].

Constant Value: 1

Public Methods

public int getIndexingType ()

Returns how the property is indexed.