dados
Interface Filtro<T>

Type Parameters:
T - É o tipo do objeto que será filtrado;

public interface Filtro<T>

Interface filtro. Classes que implementam essa interface são utilizadas para comparar parâmetros.

Author:
Lucas Tenório, Rafael Marinheiro

Method Summary
 boolean filtrar(T t)
           
 

Method Detail

filtrar

boolean filtrar(T t)
Parameters:
t - O parâmetro a ser filtrado;
Returns:
True se o parâmetro for igual. False caso contrário.