Interface SQLTable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SQLFieldget(java.lang.String name)Returns SQL fields by column header.java.util.List<SQLField>getFields()Returns the list field in this table.java.lang.StringgetLabel()Returns the label of this table.SchemaPathgetPath()Returns the schema path of this table.java.lang.StringgetSchema()Returns the schema of this table.
-
-
-
Method Detail
-
getPath
SchemaPath getPath()
Returns the schema path of this table.
-
getLabel
java.lang.String getLabel()
Returns the label of this table.
-
getFields
java.util.List<SQLField> getFields()
Returns the list field in this table.
-
getSchema
java.lang.String getSchema()
Returns the schema of this table.
-
get
SQLField get(java.lang.String name)
Returns SQL fields by column header.- Parameters:
name- The column name.
-
-