Uses of Class
edu.caltech.nanodb.functions.FunctionDirectory
-
Packages that use FunctionDirectory Package Description edu.caltech.nanodb.expressions This package contains classes for representing and evaluating arithmetic and logical expressions.edu.caltech.nanodb.server edu.caltech.nanodb.sqlparse -
-
Uses of FunctionDirectory in edu.caltech.nanodb.expressions
Methods in edu.caltech.nanodb.expressions with parameters of type FunctionDirectory Modifier and Type Method Description void
FunctionCall. resolve(FunctionDirectory directory)
Resolve this function-call against the function directory so that the implementation of the function is available at evaluation time. -
Uses of FunctionDirectory in edu.caltech.nanodb.server
Fields in edu.caltech.nanodb.server declared as FunctionDirectory Modifier and Type Field Description private FunctionDirectory
NanoDBServer. functionDirectory
The function directory for this database server.Methods in edu.caltech.nanodb.server that return FunctionDirectory Modifier and Type Method Description FunctionDirectory
NanoDBServer. getFunctionDirectory()
Returns the function directory for this database server. -
Uses of FunctionDirectory in edu.caltech.nanodb.sqlparse
Fields in edu.caltech.nanodb.sqlparse declared as FunctionDirectory Modifier and Type Field Description private FunctionDirectory
NanoSQLTranslator. functionDirectory
A function directory for resolving function calls.Methods in edu.caltech.nanodb.sqlparse with parameters of type FunctionDirectory Modifier and Type Method Description static Command
ParseUtil. parseCommand(java.lang.String command, FunctionDirectory functionDirectory)
Parse an input string into some kind ofCommand
.static java.util.List<Command>
ParseUtil. parseCommands(java.lang.String commands, FunctionDirectory functionDirectory)
static Expression
ParseUtil. parseExpression(java.lang.String expression, FunctionDirectory functionDirectory)
Constructors in edu.caltech.nanodb.sqlparse with parameters of type FunctionDirectory Constructor Description NanoSQLTranslator(FunctionDirectory functionDirectory)
-