Filter.java 64 Bytes
public interface Filter<T, U> {
	
	public U apply(T elem);
	
}