public interface

Condition<T, U>

 androidx.test.uiautomator.Condition<T, U>

Subclasses:

UiObject2Condition<U>, SearchCondition<U>

Gradle dependencies

compile group: 'androidx.test.uiautomator', name: 'uiautomator', version: '2.4.0-alpha01'

  • groupId: androidx.test.uiautomator
  • artifactId: uiautomator
  • version: 2.4.0-alpha01

Artifact androidx.test.uiautomator:uiautomator:2.4.0-alpha01 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test.uiautomator:uiautomator com.android.support.test.uiautomator:uiautomator

Androidx class mapping:

androidx.test.uiautomator.Condition android.support.test.uiautomator.Condition

Overview

Represents a condition to be satisfied.

Summary

Methods
public java.lang.Objectapply(java.lang.Object args)

Applies the given arguments against this condition.

Methods

public java.lang.Object apply(java.lang.Object args)

Applies the given arguments against this condition. Returns a non-null, non-false result if the condition is satisfied.

Source

/*
 * Copyright (C) 2014 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.test.uiautomator;

/** Represents a condition to be satisfied. */
public interface Condition<T, U> {

    /**
     * Applies the given arguments against this condition. Returns a non-null, non-false result if
     * the condition is satisfied.
     */
    U apply(T args);
}