edu.stanford.nlp.util
Interface Filter<T>

All Superinterfaces:
Serializable

public interface Filter<T>
extends Serializable

Filter is an interface for predicate objects which respond to the accept method.

Author:
Dan Klein

Method Summary
 boolean accept(T obj)
          Checks if the given object passes the filter.
 

Method Detail

accept

boolean accept(T obj)
Checks if the given object passes the filter.

Parameters:
obj - an object to test


Stanford NLP Group