org.edg.info.sqlutil.parsql
Class FromItem

java.lang.Object
  extended byorg.edg.info.sqlutil.parsql.AliasedName
      extended byorg.edg.info.sqlutil.parsql.FromItem
All Implemented Interfaces:
java.io.Serializable

public class FromItem
extends AliasedName

An SQL FROM clause. Example: "FROM myTable" in "SELECT * FROM myTable".

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.edg.info.sqlutil.parsql.AliasedName
FORM_COLUMN, FORM_TABLE
 
Constructor Summary
FromItem()
          Create a new FROM clause.
FromItem(java.lang.String tableName)
          Create a new FROM clause on a given table.
 
Methods inherited from class org.edg.info.sqlutil.parsql.AliasedName
getAlias, getColumn, getSchema, getTable, isWildcard, setAlias, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FromItem

public FromItem()
Create a new FROM clause.

See Also:
AliasedName.AliasedName()

FromItem

public FromItem(java.lang.String tableName)
Create a new FROM clause on a given table.

Parameters:
tableName - The table name.
See Also:
AliasedName.AliasedName(String, int)