Class Expression.Apply<E>
- java.lang.Object
-
- edu.washington.cs.knowitall.logic.Expression<E>
-
- edu.washington.cs.knowitall.logic.Expression.Apply<E>
-
- Direct Known Subclasses:
Expression.Arg
,Expression.Op
- Enclosing class:
- Expression<E>
public abstract static class Expression.Apply<E> extends Expression<E>
An expression that can be applied.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class edu.washington.cs.knowitall.logic.Expression
Expression.Apply<E>, Expression.Arg<E>, Expression.Op<E>, Expression.Paren<E>
-
-
Constructor Summary
Constructors Constructor Description Apply()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract boolean
apply(E entity)
Apply this expression to an entity to get true or false.
-
-
-
Method Detail
-
apply
public abstract boolean apply(E entity)
Apply this expression to an entity to get true or false.
-
-