Package jadex.commons
Interface IFilter<T>
-
- All Known Subinterfaces:
IHardConstraintsFilter
- All Known Implementing Classes:
ComposedFilter
,ConstantFilter
,FileFilter
,FipaMessage
public interface IFilter<T>
Generic filter interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
filter(T obj)
Test if an object passes the filter.
-
-
-
Method Detail
-
filter
boolean filter(T obj)
Test if an object passes the filter.- Returns:
- True, if passes the filter.
-
-