﻿public interface Predicate<T> {

    boolean call(T obj);
}