class SearchSpec


This class represents the specification logic for AppSearch. It can be used to set the type of search, like prefix or exact only or apply filters to search for a specific schema type only etc.

Summary

Nested types

Builder for objects.

Constants

const Int

Results should be grouped together by namespace for the purpose of enforcing a limit on the number of results returned per namespace.

const Int

Results should be grouped together by package for the purpose of enforcing a limit on the number of results returned per package.

const Int
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SEARCH_SPEC_GROUPING_TYPE_PER_SCHEMA)
GROUPING_TYPE_PER_SCHEMA = 4

Results should be grouped together by schema type for the purpose of enforcing a limit on the number of results returned per schema type.

const Int

Search results will be returned in an ascending order.

const Int

Search results will be returned in a descending order.

const String!

Schema type to be used in addProjection to apply property paths to all results, excepting any types that have had their own, specific property paths set.

const Int

Ranked by the advanced ranking expression provided.

const Int

Ranked by document creation timestamps.

const Int

Ranked by app-provided document scores.

const Int

Ranked by the aggregated ranking signal of the joined documents.

const Int

No Ranking, results are returned in arbitrary order.

const Int

Ranked by document relevance score.

const Int

Ranked by number of usages from a system UI surface.

const Int

Ranked by timestamp of last usage from a system UI surface.

const Int

Ranked by number of usages, as reported by the app.

const Int

Ranked by timestamp of last usage, as reported by the app.

const Int

Query terms will only match exact tokens in the index.

const Int

Query terms will match indexed tokens when the query term is a prefix of the token.

Public functions

String

Get the advanced ranking expression, or "" if setRankingStrategy was not called.

(Mutable)List<String!>

Returns the list of namespaces to search over.

(Mutable)List<String!>

Returns the list of package name filters to search over.

(Mutable)List<String!>

Returns the list of schema types to search for.

JoinSpec?

Returns specification on which documents need to be joined.

Int

Returns the maximum size of a snippet in characters.

Int

Returns the order of returned search results (descending or ascending).

(Mutable)Map<String!, (Mutable)List<PropertyPath!>!>

Returns a map from schema type to property paths to be used for projection.

(Mutable)Map<String!, (Mutable)List<String!>!>

Returns a map from schema type to property paths to be used for projection.

(Mutable)Map<String!, (Mutable)Map<PropertyPath!, Double!>!>

Returns properties weights to be used for scoring.

(Mutable)Map<String!, (Mutable)Map<String!, Double!>!>

Returns properties weights to be used for scoring.

Int

Returns the ranking strategy.

Int

Returns the number of results per page in the result set.

Int

Get the maximum number of results to return for each group.

Int

Get the type of grouping limit to apply, or 0 if setResultGrouping was not called.

Int

Returns how many documents to generate snippets for.

Int

Returns how many matches for each property of a matching document to generate snippets for.

Int

Returns how the query terms should match terms in the index.

Boolean

Returns whether the LIST_FILTER_QUERY_LANGUAGE feature is enabled.

Boolean

Returns whether the NUMERIC_SEARCH feature is enabled.

Boolean

Returns whether the VERBATIM_SEARCH feature is enabled.

Constants

GROUPING_TYPE_PER_NAMESPACE

Added in 1.1.0-alpha04
const val GROUPING_TYPE_PER_NAMESPACE = 2: Int

Results should be grouped together by namespace for the purpose of enforcing a limit on the number of results returned per namespace.

GROUPING_TYPE_PER_PACKAGE

Added in 1.1.0-alpha04
const val GROUPING_TYPE_PER_PACKAGE = 1: Int

Results should be grouped together by package for the purpose of enforcing a limit on the number of results returned per package.

GROUPING_TYPE_PER_SCHEMA

Added in 1.1.0-alpha04
@RequiresFeature(enforcement = "androidx.appsearch.app.Features#isFeatureSupported", name = Features.SEARCH_SPEC_GROUPING_TYPE_PER_SCHEMA)
const val GROUPING_TYPE_PER_SCHEMA = 4: Int

Results should be grouped together by schema type for the purpose of enforcing a limit on the number of results returned per schema type.

TODO(b/291122592): Unhide in Mainline when API updates via Mainline are possible. -->

ORDER_ASCENDING

Added in 1.1.0-alpha04
const val ORDER_ASCENDING = 1: Int

Search results will be returned in an ascending order.

ORDER_DESCENDING

Added in 1.1.0-alpha04
const val ORDER_DESCENDING = 0: Int

Search results will be returned in a descending order.

PROJECTION_SCHEMA_TYPE_WILDCARD

Added in 1.1.0-alpha04
const val PROJECTION_SCHEMA_TYPE_WILDCARD = "*": String!

Schema type to be used in addProjection to apply property paths to all results, excepting any types that have had their own, specific property paths set.

RANKING_STRATEGY_ADVANCED_RANKING_EXPRESSION

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_ADVANCED_RANKING_EXPRESSION = 9: Int

Ranked by the advanced ranking expression provided.

RANKING_STRATEGY_CREATION_TIMESTAMP

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_CREATION_TIMESTAMP = 2: Int

Ranked by document creation timestamps.

RANKING_STRATEGY_DOCUMENT_SCORE

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_DOCUMENT_SCORE = 1: Int

Ranked by app-provided document scores.

RANKING_STRATEGY_JOIN_AGGREGATE_SCORE

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_JOIN_AGGREGATE_SCORE = 8: Int

Ranked by the aggregated ranking signal of the joined documents.

Which aggregation strategy is used to determine a ranking signal is specified in the JoinSpec set by setJoinSpec. This ranking strategy may not be used if no JoinSpec is provided.

See also
build

RANKING_STRATEGY_NONE

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_NONE = 0: Int

No Ranking, results are returned in arbitrary order.

RANKING_STRATEGY_RELEVANCE_SCORE

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_RELEVANCE_SCORE = 3: Int

Ranked by document relevance score.

RANKING_STRATEGY_SYSTEM_USAGE_COUNT

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_SYSTEM_USAGE_COUNT = 6: Int

Ranked by number of usages from a system UI surface.

RANKING_STRATEGY_SYSTEM_USAGE_LAST_USED_TIMESTAMP

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_SYSTEM_USAGE_LAST_USED_TIMESTAMP = 7: Int

Ranked by timestamp of last usage from a system UI surface.

RANKING_STRATEGY_USAGE_COUNT

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_USAGE_COUNT = 4: Int

Ranked by number of usages, as reported by the app.

RANKING_STRATEGY_USAGE_LAST_USED_TIMESTAMP

Added in 1.1.0-alpha04
const val RANKING_STRATEGY_USAGE_LAST_USED_TIMESTAMP = 5: Int

Ranked by timestamp of last usage, as reported by the app.

TERM_MATCH_EXACT_ONLY

Added in 1.1.0-alpha04
const val TERM_MATCH_EXACT_ONLY = 1: Int

Query terms will only match exact tokens in the index.

For example, a query term "foo" will only match indexed token "foo", and not "foot" or "football".

TERM_MATCH_PREFIX

Added in 1.1.0-alpha04
const val TERM_MATCH_PREFIX = 2: Int

Query terms will match indexed tokens when the query term is a prefix of the token.

For example, a query term "foo" will match indexed tokens like "foo", "foot", and "football".

Public functions

getAdvancedRankingExpression

Added in 1.1.0-alpha04
fun getAdvancedRankingExpression(): String

Get the advanced ranking expression, or "" if setRankingStrategy was not called.

getFilterNamespaces

Added in 1.1.0-alpha04
fun getFilterNamespaces(): (Mutable)List<String!>

Returns the list of namespaces to search over.

If empty, the query will search over all namespaces.

getFilterPackageNames

Added in 1.1.0-alpha04
fun getFilterPackageNames(): (Mutable)List<String!>

Returns the list of package name filters to search over.

If empty, the query will search over all packages that the caller has access to. If package names are specified which caller doesn't have access to, then those package names will be ignored.

getFilterSchemas

Added in 1.1.0-alpha04
fun getFilterSchemas(): (Mutable)List<String!>

Returns the list of schema types to search for.

If empty, the query will search over all schema types.

getJoinSpec

Added in 1.1.0-alpha04
fun getJoinSpec(): JoinSpec?

Returns specification on which documents need to be joined.

getMaxSnippetSize

Added in 1.1.0-alpha04
fun getMaxSnippetSize(): Int

Returns the maximum size of a snippet in characters.

getOrder

Added in 1.1.0-alpha04
fun getOrder(): Int

Returns the order of returned search results (descending or ascending).

getProjectionPaths

Added in 1.1.0-alpha04
fun getProjectionPaths(): (Mutable)Map<String!, (Mutable)List<PropertyPath!>!>

Returns a map from schema type to property paths to be used for projection.

If the map is empty, then all properties will be retrieved for all results.

Calling this function repeatedly is inefficient. Prefer to retain the Map returned by this function, rather than calling it multiple times.

Returns
(Mutable)Map<String!, (Mutable)List<PropertyPath!>!>

A mapping of schema types to lists of projection PropertyPath objects.

getProjections

Added in 1.1.0-alpha04
fun getProjections(): (Mutable)Map<String!, (Mutable)List<String!>!>

Returns a map from schema type to property paths to be used for projection.

If the map is empty, then all properties will be retrieved for all results.

Calling this function repeatedly is inefficient. Prefer to retain the Map returned by this function, rather than calling it multiple times.

Returns
(Mutable)Map<String!, (Mutable)List<String!>!>

A mapping of schema types to lists of projection strings.

getPropertyWeightPaths

Added in 1.1.0-alpha04
fun getPropertyWeightPaths(): (Mutable)Map<String!, (Mutable)Map<PropertyPath!, Double!>!>

Returns properties weights to be used for scoring.

Calling this function repeatedly is inefficient. Prefer to retain the Map returned by this function, rather than calling it multiple times.

Returns
(Mutable)Map<String!, (Mutable)Map<PropertyPath!, Double!>!>

a Map of schema type to an inner-map of property paths of the schema type to the weight to set for that property.

getPropertyWeights

Added in 1.1.0-alpha04
fun getPropertyWeights(): (Mutable)Map<String!, (Mutable)Map<String!, Double!>!>

Returns properties weights to be used for scoring.

Calling this function repeatedly is inefficient. Prefer to retain the Map returned by this function, rather than calling it multiple times.

Returns
(Mutable)Map<String!, (Mutable)Map<String!, Double!>!>

a Map of schema type to an inner-map of property paths of the schema type to the weight to set for that property.

getRankingStrategy

Added in 1.1.0-alpha04
fun getRankingStrategy(): Int

Returns the ranking strategy.

getResultCountPerPage

Added in 1.1.0-alpha04
fun getResultCountPerPage(): Int

Returns the number of results per page in the result set.

getResultGroupingLimit

Added in 1.1.0-alpha04
fun getResultGroupingLimit(): Int

Get the maximum number of results to return for each group.

Returns
Int

the maximum number of results to return for each group or Integer.MAX_VALUE if setResultGrouping was not called.

getResultGroupingTypeFlags

Added in 1.1.0-alpha04
fun getResultGroupingTypeFlags(): Int

Get the type of grouping limit to apply, or 0 if setResultGrouping was not called.

getSnippetCount

Added in 1.1.0-alpha04
fun getSnippetCount(): Int

Returns how many documents to generate snippets for.

getSnippetCountPerProperty

Added in 1.1.0-alpha04
fun getSnippetCountPerProperty(): Int

Returns how many matches for each property of a matching document to generate snippets for.

getTermMatch

Added in 1.1.0-alpha04
fun getTermMatch(): Int

Returns how the query terms should match terms in the index.

isListFilterQueryLanguageEnabled

Added in 1.1.0-alpha04
fun isListFilterQueryLanguageEnabled(): Boolean

Returns whether the LIST_FILTER_QUERY_LANGUAGE feature is enabled.

isNumericSearchEnabled

Added in 1.1.0-alpha04
fun isNumericSearchEnabled(): Boolean

Returns whether the NUMERIC_SEARCH feature is enabled.

isVerbatimSearchEnabled

Added in 1.1.0-alpha04
fun isVerbatimSearchEnabled(): Boolean

Returns whether the VERBATIM_SEARCH feature is enabled.