jfun.parsec
Interface ObjectPredicate<T>

All Superinterfaces:
java.io.Serializable

public interface ObjectPredicate<T>
extends java.io.Serializable

Maps an Object to a boolean value.

Author:
Ben Yu Dec 20, 2004

Method Summary
 boolean isObject(T v)
          Tests whether the given object satisfies the predicate.
 

Method Detail

isObject

boolean isObject(T v)
Tests whether the given object satisfies the predicate.

Parameters:
v - the object to test.
Returns:
true if satisfies, false otherwise.