public final class

AppSearchSchema.LongPropertyConfig

extends AppSearchSchema.PropertyConfig

 java.lang.Object

androidx.appsearch.app.AppSearchSchema.PropertyConfig

↳androidx.appsearch.app.AppSearchSchema.LongPropertyConfig

Overview

Configuration for a property containing a 64-bit integer.

Summary

Fields
public static final intINDEXING_TYPE_NONE

Content in this property will not be indexed.

public static final intINDEXING_TYPE_RANGE

Content in this property will be indexed and can be fetched via numeric search range query.

from AppSearchSchema.PropertyConfigCARDINALITY_OPTIONAL, CARDINALITY_REPEATED, CARDINALITY_REQUIRED, DATA_TYPE_BOOLEAN, DATA_TYPE_BYTES, DATA_TYPE_DOCUMENT, DATA_TYPE_DOUBLE, DATA_TYPE_EMBEDDING, DATA_TYPE_LONG, DATA_TYPE_STRING
Methods
public intgetIndexingType()

Returns how the property is indexed.

from AppSearchSchema.PropertyConfigequals, fromParcel, getCardinality, getDataType, getDescription, getName, hashCode, toString
from java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait

Fields

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

Methods

public int getIndexingType()

Returns how the property is indexed.