Uses of Class
edu.washington.cs.knowitall.logic.Expression.Apply
-
Packages that use Expression.Apply Package Description edu.washington.cs.knowitall.logic -
-
Uses of Expression.Apply in edu.washington.cs.knowitall.logic
Subclasses of Expression.Apply in edu.washington.cs.knowitall.logic Modifier and Type Class Description static class
Expression.Arg<E>
An expression that evaluates to true or false.static class
Expression.Arg.Pred<E>
An expression that evaluates to true or false by applying a predicate to the supplied entity.static class
Expression.Arg.Value<E>
An expression that is a constant value--either true or false.static class
Expression.Op<E>
An operator expression.static class
Expression.Op.Bin<E>
An operator that takes two arguments, such as disjunction.static class
Expression.Op.Bin.And<E>
The conjunction (logical and) operator.static class
Expression.Op.Bin.Or<E>
The disjunction (logical or) operator.static class
Expression.Op.Mon<E>
An operator that takes a single argument, such as negation.static class
Expression.Op.Mon.Not<E>
The negation operator.Fields in edu.washington.cs.knowitall.logic declared as Expression.Apply Modifier and Type Field Description private Expression.Apply<E>
LogicExpression. expression
Expression.Apply<E>
Expression.Op.Bin. left
Expression.Apply<E>
Expression.Op.Bin. right
Expression.Apply<E>
Expression.Op.Mon. sub
Methods in edu.washington.cs.knowitall.logic that return Expression.Apply Modifier and Type Method Description static <E> Expression.Apply<E>
LogicExpression. buildAst(java.util.List<Expression<E>> rpn)
Compile a rpn list of tokens into an expression tree.Methods in edu.washington.cs.knowitall.logic with parameters of type Expression.Apply Modifier and Type Method Description private void
LogicExpression. getArgs(Expression.Apply<?> apply, java.util.List<java.lang.String> args)
Private helper method to recursively find arguments.
-