Uses of Class
org.h2.server.web.DbTableOrView

Packages that use DbTableOrView
org.h2.bnf The implementation of the BNF (Backus-Naur form) parser and tool. 
 

Uses of DbTableOrView in org.h2.bnf
 

Methods in org.h2.bnf that return DbTableOrView
 DbTableOrView Sentence.getLastMatchedTable()
          Get the last matched table if the last match was a table.
 DbTableOrView Sentence.getLastTable()
          Get the last added table.
 

Methods in org.h2.bnf that return types with arguments of type DbTableOrView
 java.util.HashMap<java.lang.String,DbTableOrView> Sentence.getAliases()
          Get the alias map.
 java.util.HashSet<DbTableOrView> Sentence.getTables()
          Get the set of tables.
 

Methods in org.h2.bnf with parameters of type DbTableOrView
 void Sentence.addAlias(java.lang.String alias, DbTableOrView table)
          Add an alias name and object
 void Sentence.addTable(DbTableOrView table)
          Add a table.
 void Sentence.setLastMatchedTable(DbTableOrView table)
          Set the last matched table if the last match was a table.