Package org.xmlunit.util
Interface Predicate<T>
-
- All Known Implementing Classes:
IsNullPredicate
public interface Predicate<T>A function that tests an object for a property.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleantest(T toTest)Performs the test.
-
-
-
Method Detail
-
test
boolean test(T toTest)
Performs the test.- Parameters:
toTest- the object to test- Returns:
- true if the test is successful
-
-