org.apache.camel.language.simple.ast
Class NullExpression

java.lang.Object
  extended by org.apache.camel.language.simple.ast.BaseSimpleNode
      extended by org.apache.camel.language.simple.ast.NullExpression
All Implemented Interfaces:
SimpleNode

public class NullExpression
extends BaseSimpleNode

Represents a null expression.


Field Summary
 
Fields inherited from class org.apache.camel.language.simple.ast.BaseSimpleNode
token
 
Constructor Summary
NullExpression(SimpleToken token)
           
 
Method Summary
 Expression createExpression(String expression)
          Creates a Camel Expression based on this model.
 
Methods inherited from class org.apache.camel.language.simple.ast.BaseSimpleNode
getToken, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NullExpression

public NullExpression(SimpleToken token)
Method Detail

createExpression

public Expression createExpression(String expression)
                            throws SimpleParserException
Description copied from interface: SimpleNode
Creates a Camel Expression based on this model.

Parameters:
expression - the input string
Returns:
the created Expression
Throws:
SimpleParserException - should be thrown if error parsing the model


Apache CAMEL