JavaScript is disabled on your browser.
Skip navigation links
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.solidfire.core.javautil
Interface Predicate<T>
Type Parameters:
T
- The type this predicate can check for.
public interface
Predicate<T>
A functional interface for testing if a value of some type T meets an arbitrary criteria.
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method and Description
boolean
test
(
T
t)
Evaluate the provided value for the criteria.
Method Detail
test
boolean test(
T
t)
Evaluate the provided value for the criteria.
Parameters:
t
- the input argument
Returns:
true if the input argument matches the predicate, otherwise false
Skip navigation links
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