Package org.patternfly.filter
Interface FilterCondition<T,V>
- Type Parameters:
T- the type of the object to be filteredV- the type of the value used in the filter condition
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface representing a condition used for filtering objects.
-
Method Summary
-
Method Details
-
match
Evaluates whether the given object satisfies the specified condition with the provided value.- Parameters:
object- the object to be tested against the conditionvalue- the value used in the condition for testing the object- Returns:
- true if the object matches the condition with the provided value, false otherwise
-