Uses of Class
org.axiondb.Literal

Packages that use Literal
org.axiondb Core interfaces, identifiers, and exceptions. 
org.axiondb.engine.commands AxionCommand implementations. 
org.axiondb.engine.rowiterators RowIterator implementations. 
org.axiondb.parser SQL parser interface and implementation classes. 
 

Uses of Literal in org.axiondb
 

Subclasses of Literal in org.axiondb
 class BindVariable
          A Literalthat can be bound via PreparedStatementmethods.
 class Sequence
          A database sequence.
 

Uses of Literal in org.axiondb.engine.commands
 

Methods in org.axiondb.engine.commands that return Literal
 Literal AxionQueryContext.getLimit()
           
 Literal AxionQueryContext.getOffset()
           
 

Methods in org.axiondb.engine.commands with parameters of type Literal
 void AxionQueryContext.setLimit(Literal limit)
           
 void AxionQueryContext.setOffset(Literal offset)
           
 void RemountCommand.setDirectory(Literal dir)
           
 

Uses of Literal in org.axiondb.engine.rowiterators
 

Constructors in org.axiondb.engine.rowiterators with parameters of type Literal
LimitingRowIterator(RowIterator iter, Literal limit, Literal offset)
           
 

Uses of Literal in org.axiondb.parser
 

Methods in org.axiondb.parser that return Literal
 Literal AxionSqlParser.SqlSelectLimit()
           
 Literal AxionSqlParser.SqlSelectOffset()
           
 Literal AxionSqlParser.SqlNumericLiteralOrBindVar()
           
 Literal AxionSqlParser.SqlLiteralOrBindVar()
           
 Literal AxionSqlParser.SqlLiteral()