org.codehaus.jparsec.examples.sql.ast
Class FunctionExpression

java.lang.Object
  extended by org.codehaus.jparsec.examples.common.ValueObject
      extended by org.codehaus.jparsec.examples.sql.ast.FunctionExpression
All Implemented Interfaces:
Expression

public final class FunctionExpression
extends ValueObject
implements Expression

A function call.

Author:
Ben Yu

Field Summary
 List<Expression> args
           
 QualifiedName function
           
 
Constructor Summary
FunctionExpression(QualifiedName function, List<Expression> args)
           
 
Method Summary
static FunctionExpression of(QualifiedName function, Expression... args)
           
 
Methods inherited from class org.codehaus.jparsec.examples.common.ValueObject
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

function

public final QualifiedName function

args

public final List<Expression> args
Constructor Detail

FunctionExpression

public FunctionExpression(QualifiedName function,
                          List<Expression> args)
Method Detail

of

public static FunctionExpression of(QualifiedName function,
                                    Expression... args)


Copyright © 2014. All rights reserved.