Class TermExpression

java.lang.Object
org.kuali.rice.krms.framework.engine.expression.TermExpression
All Implemented Interfaces:
Expression<Object>

public final class TermExpression extends Object implements Expression<Object>
An implementation of Expression which resolves the given Term.
Author:
Kuali Rice Team (rice.collab@kuali.org)
  • Constructor Summary

    Constructors
    Constructor
    Description
    TermExpression(org.kuali.rice.krms.api.engine.Term term)
    Create a TermExpression with the given value
  • Method Summary

    Modifier and Type
    Method
    Description
    invoke(org.kuali.rice.krms.api.engine.ExecutionEnvironment environment)
    Invoke on the given ExecutionEnvironment.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • TermExpression

      public TermExpression(org.kuali.rice.krms.api.engine.Term term)
      Create a TermExpression with the given value
      Parameters:
      term - Term to invoke upon.
  • Method Details