public interface

Config.OptionMatcher

 androidx.camera.core.Config.OptionMatcher

Overview

A callback for retrieving results of a Config.Option search.

Summary

Methods
public booleanonOptionMatched(Config.Option<java.lang.Object> option)

Receives results from Config.findOptions(String, Config.OptionMatcher).

Methods

public boolean onOptionMatched(Config.Option<java.lang.Object> option)

Receives results from Config.findOptions(String, Config.OptionMatcher).

When searching for a specific option in a Config, Config.Options will be sent to Config.OptionMatcher in the order in which they are found.

Parameters:

option: The matched option.

Returns:

false if no further results are needed; true otherwise.