JavaScript is disabled on your browser.
Overview
Package
Class
Tree
Deprecated
Index
Help
Prev Class
Next Class
Frames
No Frames
All Classes
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
com.github.dm.jrt.function
Interface Predicate<IN>
Type Parameters:
IN
- the input data type.
All Known Implementing Classes:
PredicateWrapper
public interface
Predicate<IN>
Interface representing a predicate (boolean-valued function) of one argument.
Created by davide-maestroni on 10/16/2015.
Method Summary
Methods
Modifier and Type
Method and Description
boolean
test
(
IN
in)
Evaluates this predicate on the given argument.
Method Detail
test
boolean test(
IN
in)
Evaluates this predicate on the given argument.
Parameters:
in
- the input argument.
Returns:
true if the input argument matches the predicate, otherwise false.
Overview
Package
Class
Tree
Deprecated
Index
Help
Prev Class
Next Class
Frames
No Frames
All Classes
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method