Uses of Class
org.h2.bnf.context.DbTableOrView
-
Packages that use DbTableOrView Package Description org.h2.bnf The implementation of the BNF (Backus-Naur form) parser and tool.org.h2.bnf.context Classes that provide context for the BNF tool, in order to provide BNF-based auto-complete.org.h2.server.web The H2 Console tool. -
-
Uses of DbTableOrView in org.h2.bnf
Fields in org.h2.bnf declared as DbTableOrView Modifier and Type Field Description private DbTableOrView
Sentence. lastMatchedTable
private DbTableOrView
Sentence. lastTable
Fields in org.h2.bnf with type parameters of type DbTableOrView Modifier and Type Field Description private java.util.HashMap<java.lang.String,DbTableOrView>
Sentence. aliases
private java.util.HashSet<DbTableOrView>
Sentence. tables
Methods in org.h2.bnf that return DbTableOrView Modifier and Type Method Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description void
Sentence. addAlias(java.lang.String alias, DbTableOrView table)
Add an alias name and objectvoid
Sentence. addTable(DbTableOrView table)
Add a table.void
Sentence. setLastMatchedTable(DbTableOrView table)
Set the last matched table if the last match was a table. -
Uses of DbTableOrView in org.h2.bnf.context
Fields in org.h2.bnf.context declared as DbTableOrView Modifier and Type Field Description private DbTableOrView[]
DbSchema. tables
The table list.Methods in org.h2.bnf.context that return DbTableOrView Modifier and Type Method Description DbTableOrView[]
DbSchema. getTables()
-
Uses of DbTableOrView in org.h2.server.web
Fields in org.h2.server.web with type parameters of type DbTableOrView Modifier and Type Field Description private static java.util.Comparator<DbTableOrView>
WebApp. SYSTEM_SCHEMA_COMPARATOR
Methods in org.h2.server.web with parameters of type DbTableOrView Modifier and Type Method Description private static int
WebApp. addColumns(boolean mainSchema, DbTableOrView table, java.lang.StringBuilder builder, int treeIndex, boolean showColumnTypes, java.lang.StringBuilder columnsBuilder)
private static int
WebApp. addTableOrView(DbSchema schema, boolean mainSchema, java.lang.StringBuilder builder, int treeIndex, java.sql.DatabaseMetaData meta, boolean showColumns, java.lang.String indentation, boolean isOracle, boolean notManyTables, DbTableOrView table, boolean isView, java.sql.PreparedStatement prep, java.lang.String indentNode)
-