public final class

FeatureConstants

extends java.lang.Object

 java.lang.Object

↳androidx.appsearch.app.FeatureConstants

Gradle dependencies

compile group: 'androidx.appsearch', name: 'appsearch', version: '1.1.0-alpha05'

  • groupId: androidx.appsearch
  • artifactId: appsearch
  • version: 1.1.0-alpha05

Artifact androidx.appsearch:appsearch:1.1.0-alpha05 it located at Google repository (https://maven.google.com/)

Overview

A class that encapsulates all feature constants that are accessible in AppSearch framework.

All fields in this class is referring in Features. If you add/remove any field in this class, you should also change Features.

Summary

Fields
public static final java.lang.StringEMBEDDING_SEARCH

A feature constant for the "semanticSearch" function in AppSearchSession.search(String, SearchSpec).

public static final java.lang.StringLIST_FILTER_HAS_PROPERTY_FUNCTION

Feature constants for Features.LIST_FILTER_HAS_PROPERTY_FUNCTION.

public static final java.lang.StringLIST_FILTER_QUERY_LANGUAGE

Feature constants for Features.LIST_FILTER_QUERY_LANGUAGE.

public static final java.lang.StringNUMERIC_SEARCH

Feature constants for Features.NUMERIC_SEARCH.

public static final java.lang.StringVERBATIM_SEARCH

Feature constants for Features.VERBATIM_SEARCH.

Methods
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Fields

public static final java.lang.String NUMERIC_SEARCH

Feature constants for Features.NUMERIC_SEARCH.

public static final java.lang.String VERBATIM_SEARCH

Feature constants for Features.VERBATIM_SEARCH.

public static final java.lang.String LIST_FILTER_QUERY_LANGUAGE

Feature constants for Features.LIST_FILTER_QUERY_LANGUAGE.

public static final java.lang.String LIST_FILTER_HAS_PROPERTY_FUNCTION

Feature constants for Features.LIST_FILTER_HAS_PROPERTY_FUNCTION.

public static final java.lang.String EMBEDDING_SEARCH

A feature constant for the "semanticSearch" function in AppSearchSession.search(String, SearchSpec).

Source

/*
 * Copyright 2023 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.appsearch.app;

import androidx.annotation.RestrictTo;

/**
 * A class that encapsulates all feature constants that are accessible in AppSearch framework.
 *
 * <p>All fields in this class is referring in {@link Features}. If you add/remove any field in this
 * class, you should also change {@link Features}.
 * @see Features
 * @exportToFramework:hide
 */
@RestrictTo(RestrictTo.Scope.LIBRARY)
public final class FeatureConstants {
    /** Feature constants for {@link Features#NUMERIC_SEARCH}. */
    public static final String NUMERIC_SEARCH = "NUMERIC_SEARCH";

    /**  Feature constants for {@link Features#VERBATIM_SEARCH}.   */
    public static final String VERBATIM_SEARCH = "VERBATIM_SEARCH";

    /**  Feature constants for {@link Features#LIST_FILTER_QUERY_LANGUAGE}.  */
    public static final String LIST_FILTER_QUERY_LANGUAGE = "LIST_FILTER_QUERY_LANGUAGE";

    /**  Feature constants for {@link Features#LIST_FILTER_HAS_PROPERTY_FUNCTION}.  */
    public static final String LIST_FILTER_HAS_PROPERTY_FUNCTION =
            "LIST_FILTER_HAS_PROPERTY_FUNCTION";

    /** A feature constant for the "semanticSearch" function in {@link AppSearchSession#search}. */
    public static final String EMBEDDING_SEARCH = "EMBEDDING_SEARCH";

    private FeatureConstants() {}
}