/** * */ package org.semanticsoft.commons.general; /** * @author rushan * */ public interface Condition<T> { boolean check(T object); }