public interface

UseCaseEventConfig

implements ReadableConfig

 androidx.camera.core.internal.UseCaseEventConfig

Subclasses:

PreviewConfig, ImageCaptureConfig, ImageAnalysisConfig, UseCaseConfig<T>, VideoCaptureConfig, VideoCaptureConfig<T>

Gradle dependencies

compile group: 'androidx.camera', name: 'camera-core', version: '1.2.0-alpha01'

  • groupId: androidx.camera
  • artifactId: camera-core
  • version: 1.2.0-alpha01

Artifact androidx.camera:camera-core:1.2.0-alpha01 it located at Google repository (https://maven.google.com/)

Overview

Configuration containing options pertaining to EventCallback object.

Summary

Fields
public static final Config.Option<UseCase.EventCallback>OPTION_USE_CASE_EVENT_CALLBACK

Option: camerax.core.useCaseEventCallback

Methods
public UseCase.EventCallbackgetUseCaseEventCallback()

Returns the EventCallback.

public UseCase.EventCallbackgetUseCaseEventCallback(UseCase.EventCallback valueIfMissing)

Returns the EventCallback.

Fields

public static final Config.Option<UseCase.EventCallback> OPTION_USE_CASE_EVENT_CALLBACK

Option: camerax.core.useCaseEventCallback

Methods

public UseCase.EventCallback getUseCaseEventCallback(UseCase.EventCallback valueIfMissing)

Returns the EventCallback.

Parameters:

valueIfMissing: The value to return if this configuration option has not been set.

Returns:

The stored value or valueIfMissing if the value does not exist in this configuration.

public UseCase.EventCallback getUseCaseEventCallback()

Returns the EventCallback.

Returns:

The stored value, if it exists in this configuration.

Source

/*
 * Copyright 2019 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.camera.core.internal;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import androidx.camera.core.UseCase;
import androidx.camera.core.impl.Config;
import androidx.camera.core.impl.ReadableConfig;

/**
 * Configuration containing options pertaining to EventCallback object.
 */
@RequiresApi(21) // TODO(b/200306659): Remove and replace with annotation on package-info.java
public interface UseCaseEventConfig extends ReadableConfig {

    /**
     * Option: camerax.core.useCaseEventCallback
     */
    Config.Option<UseCase.EventCallback> OPTION_USE_CASE_EVENT_CALLBACK =
            Config.Option.create("camerax.core.useCaseEventCallback", UseCase.EventCallback.class);

    /**
     * Returns the EventCallback.
     *
     * @param valueIfMissing The value to return if this configuration option has not been set.
     * @return The stored value or <code>valueIfMissing</code> if the value does not exist in this
     * configuration.
     */
    @Nullable
    default UseCase.EventCallback getUseCaseEventCallback(
            @Nullable UseCase.EventCallback valueIfMissing) {
        return retrieveOption(OPTION_USE_CASE_EVENT_CALLBACK, valueIfMissing);
    }

    /**
     * Returns the EventCallback.
     *
     * @return The stored value, if it exists in this configuration.
     */
    @NonNull
    default UseCase.EventCallback getUseCaseEventCallback() {
        return retrieveOption(OPTION_USE_CASE_EVENT_CALLBACK);
    }

    // Option Declarations:
    // *********************************************************************************************

    /**
     * Builder for a {@link UseCaseEventConfig}.
     *
     * @param <B> The top level builder type for which this builder is composed with.
     */
    interface Builder<B> {

        /**
         * Sets the EventCallback.
         *
         * @param eventCallback The EventCallback.
         * @return the current Builder.
         */
        @NonNull
        B setUseCaseEventCallback(@NonNull UseCase.EventCallback eventCallback);
    }
}