Interface Criterium<T>
-
- All Known Implementing Classes:
ProcessCriterium
public interface Criterium<T>
Interface for decisions to be made in the sync-process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
applies(T object)
Determine, if the given object of type T fulfills the Criterium.
-
-
-
Method Detail
-
applies
boolean applies(T object)
Determine, if the given object of type T fulfills the Criterium.
-
-