Package org.apache.storm.utils
Interface IPredicate<T>
-
public interface IPredicate<T>
This interface is implemented by classes, instances of which can be passed into certain Util functions which test some collection for elements matching the IPredicate. (IPredicate.test(...) == true)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
test(T obj)
-
-
-
Method Detail
-
test
boolean test(T obj)
-
-