Uses of Class
easik.sketch.util.Export.Components.ExportTable

Packages that use ExportTable
easik.sketch.util.Export   
easik.sketch.util.Export.Components   
 

Uses of ExportTable in easik.sketch.util.Export
 

Fields in easik.sketch.util.Export declared as ExportTable
private  ExportTable ExportHandler._newTable
          The current table being added to the database
 

Fields in easik.sketch.util.Export with type parameters of type ExportTable
private  java.util.HashMap<java.lang.String,ExportTable> ExportHandler._tables
          A HashMap of all the tables of the graph.
 

Methods in easik.sketch.util.Export that return ExportTable
 ExportTable ExportHandler.getTable(java.lang.String name)
          Gets the table associated with a given entity name
 

Methods in easik.sketch.util.Export that return types with arguments of type ExportTable
private  java.util.LinkedList<ExportTable> SketchToSchema.getSinks(java.util.HashMap tables)
          Find all the tables in the sketch that do not have any outgoing edges.
 java.util.HashMap<java.lang.String,ExportTable> ExportHandler.getTables()
          Getter method for the HashMap of all tables to be created.
 

Methods in easik.sketch.util.Export with parameters of type ExportTable
private  void SketchToSchema.addUnmarkedParents(java.util.HashMap tables, java.util.LinkedList workingSet, java.util.ListIterator<ExportTable> listIterator, ExportTable currentTable)
          Find all the unmarked parents of marked nodes, add them to the provided listIterator.
private  boolean SketchToSchema.areNeighborsMarked(java.util.HashMap tables, ExportTable t)
          A helper method which will check to see if the neighbours of a current table have been marked.
private  java.lang.String SketchToSchema.newTable(ExportTable table)
          Given a table, create a SQL table (which is a string).
 

Method parameters in easik.sketch.util.Export with type arguments of type ExportTable
private  void SketchToSchema.addUnmarkedParents(java.util.HashMap tables, java.util.LinkedList workingSet, java.util.ListIterator<ExportTable> listIterator, ExportTable currentTable)
          Find all the unmarked parents of marked nodes, add them to the provided listIterator.
 

Uses of ExportTable in easik.sketch.util.Export.Components
 

Methods in easik.sketch.util.Export.Components with parameters of type ExportTable
static java.lang.String ExportAttribute.getAttributeString(ExportTable t)
          Formats the Attribute string for SQL.
static java.lang.String ExportEdge.getForeignKeyString(ExportTable t)
          Formats the foreign key string for SQL.
static java.lang.String ExportTable.getPrimaryKeyString(ExportTable t)
          A method to determine the formatting of the primary key portion of table definition and set the relevant string field to this value
static java.lang.String ExportUniqueKey.getUniqueKeyString(ExportTable t)
          Formats the unique key string for SQL exportation.