public interface

AppSearchConfig

implements IcingOptionsConfig, LimitConfig

 androidx.appsearch.localstorage.AppSearchConfig

Subclasses:

AppSearchConfigImpl

Gradle dependencies

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

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

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

Overview

An interface that wraps AppSearch configurations required to create AppSearchImpl.

Summary

Methods
public booleanshouldRetrieveParentInfo()

Whether to include the list of parent types when returning a GenericDocument.

public booleanshouldStoreParentInfoAsSyntheticProperty()

Whether to store GenericDocument's parent types as a synthetic property.

Methods

public boolean shouldStoreParentInfoAsSyntheticProperty()

Whether to store GenericDocument's parent types as a synthetic property. If not, the list of parent types will be wrapped as a meta field in GenericDocument, in a similar way as namespace, id, creationTimestamp, etc.

public boolean shouldRetrieveParentInfo()

Whether to include the list of parent types when returning a GenericDocument.

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.localstorage;

import androidx.annotation.RestrictTo;
import androidx.appsearch.app.GenericDocument;

/**
 * An interface that wraps AppSearch configurations required to create {@link AppSearchImpl}.
 */
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
public interface AppSearchConfig extends IcingOptionsConfig, LimitConfig {

    /**
     * Whether to store {@link GenericDocument}'s parent types as a synthetic property. If not,
     * the list of parent types will be wrapped as a meta field in {@link GenericDocument}, in a
     * similar way as namespace, id, creationTimestamp, etc.
     */
    boolean shouldStoreParentInfoAsSyntheticProperty();

    /**
     * Whether to include the list of parent types when returning a {@link GenericDocument}.
     */
    boolean shouldRetrieveParentInfo();
}