Uses of Interface
org.apache.jdo.jdoql.tree.MethodCallExpression

Packages that use MethodCallExpression
org.apache.jdo.impl.jdoql.tree   
org.apache.jdo.jdoql.tree This package contains the query tree node interfaces, the node visitor interface and the tree walker. 
 

Uses of MethodCallExpression in org.apache.jdo.impl.jdoql.tree
 

Classes in org.apache.jdo.impl.jdoql.tree that implement MethodCallExpression
 class ContainsCallExpr
          This node represents the method call expression Collection.contains.
 class EndsWithCallExpr
          This node represents the method call expression String.endsWith.
 class IsEmptyCallExpr
          This node represents the method call expression Collection.isEmpty.
 class MethodCallExpr
          This node represents a method call expression.
 class StartsWithCallExpr
          This node represents the method call expression String.startsWith.
 

Methods in org.apache.jdo.impl.jdoql.tree that return MethodCallExpression
 MethodCallExpression Tree.newMethodCall(Expression target, java.lang.String methodName, Expression[] arguments)
          Returns an instance of MethodCallExpression.
 

Methods in org.apache.jdo.impl.jdoql.tree with parameters of type MethodCallExpression
protected  java.lang.Object FilterExpressionDumper.leave(MethodCallExpression node, java.lang.Object[] results)
          Method call expressions are dumped like target.methodName(arguments).
protected  boolean FilterExpressionDumper.walkNextChild(MethodCallExpression node, java.lang.Object resultOfPreviousChild, int indexOfNextChild)
          Method call expressions are dumped like target.methodName(arguments).
 

Uses of MethodCallExpression in org.apache.jdo.jdoql.tree
 

Subinterfaces of MethodCallExpression in org.apache.jdo.jdoql.tree
 interface ContainsCallExpression
          This node represents the method call expression Collection.contains.
 interface EndsWithCallExpression
          This node represents the method call expression String.endsWith.
 interface IsEmptyCallExpression
          This node represents the method call expression Collection.isEmpty.
 interface StartsWithCallExpression
          This node represents the method call expression String.startsWith.
 

Methods in org.apache.jdo.jdoql.tree that return MethodCallExpression
 MethodCallExpression ExpressionFactory.newMethodCall(Expression target, java.lang.String methodName, Expression[] arguments)
          The implementation may decide to create a specialized instance of MethodCallExpression (for example, ContainsCallExpression) depending on the argument methodName.
 

Methods in org.apache.jdo.jdoql.tree with parameters of type MethodCallExpression
protected  void AbstractNodeVisitor.arrive(MethodCallExpression node)
          This method delegates to arrive casting the argument node to Expression.
protected  java.lang.Object AbstractNodeVisitor.leave(MethodCallExpression node, java.lang.Object[] results)
          This method delegates to leave casting the argument node to Expression.
protected  boolean AbstractNodeVisitor.walkNextChild(MethodCallExpression node, java.lang.Object resultOfPreviousChild, int indexOfNextChild)
          This method delegates to walkNextChild casting the argument node to Expression.