org.sql.generation.api.grammar.builders.definition
Interface TableElementListBuilder

All Superinterfaces:
AbstractBuilder<TableElementList>

public interface TableElementListBuilder
extends AbstractBuilder<TableElementList>

This is the builder for table element list used in CREATE TABLE statements.

Author:
Stanislav Muhametsin

Method Summary
 TableElementListBuilder addTableElement(TableElement element)
          Adds the table element to this list.
 List<TableElement> getTableElements()
          Returns all the elements that this builder has.
 
Methods inherited from interface org.sql.generation.api.grammar.builders.AbstractBuilder
createExpression
 

Method Detail

addTableElement

TableElementListBuilder addTableElement(TableElement element)
Adds the table element to this list.

Parameters:
element - The table element to add to this list.
Returns:
This builder.

getTableElements

List<TableElement> getTableElements()
Returns all the elements that this builder has.

Returns:
All the elements that this builder has.


Copyright © 2010-2012. All Rights Reserved.