Class TableRowSource
- java.lang.Object
-
- com.ibm.fhir.database.utils.query.TableRowSource
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedTableRowSource(String tableName)Protected constructor for a table without a qualified schema nameprotectedTableRowSource(String schemaName, String tableName)Protected constructor for a table qualified by schema name
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AliasgetImpliedAlias()Get an implied alias for this row source if one is appropriate (e.g.<T> Trender(StatementRenderer<T> renderer)Render the row sourceStringtoPrettyString(boolean pretty)Render the object as a stringStringtoString()
-
-
-
Constructor Detail
-
TableRowSource
protected TableRowSource(String tableName)
Protected constructor for a table without a qualified schema name- Parameters:
tableName-
-
-
Method Detail
-
getImpliedAlias
public Alias getImpliedAlias()
Description copied from interface:RowSourceGet an implied alias for this row source if one is appropriate (e.g. the table name)- Specified by:
getImpliedAliasin interfaceRowSource- Returns:
-
toPrettyString
public String toPrettyString(boolean pretty)
Description copied from interface:RowSourceRender the object as a string- Specified by:
toPrettyStringin interfaceRowSource- Parameters:
pretty- pretty-print the return value if true- Returns:
-
render
public <T> T render(StatementRenderer<T> renderer)
Description copied from interface:RowSourceRender the row source
-
-