public interface

Predicate

io.reactivex.functions.Predicate<T>

Class Overview

A functional interface (callback) that returns true or false for the given input value.

Summary

Public Methods
abstract boolean test(T t)
Test the given input value and return a boolean.

Public Methods

public abstract boolean test (T t)

Test the given input value and return a boolean.

Parameters
t the value
Returns
  • the boolean result
Throws
Exception on error