Uses of Interface
adql.query.from.FromContent
-
Packages that use FromContent Package Description adql.parser adql.query adql.query.from adql.translator -
-
Uses of FromContent in adql.parser
Methods in adql.parser that return FromContent Modifier and Type Method Description FromContentADQLParser. JoinedTable()FromContentADQLParser. SimpleTableRef()FromContentADQLParser. TableRef()Methods in adql.parser with parameters of type FromContent Modifier and Type Method Description ADQLJoinADQLQueryFactory. createJoin(ADQLQueryFactory.JoinType type, FromContent leftTable, FromContent rightTable)ADQLJoinADQLQueryFactory. createJoin(ADQLQueryFactory.JoinType type, FromContent leftTable, FromContent rightTable, ClauseConstraints condition)ADQLJoinADQLQueryFactory. createJoin(ADQLQueryFactory.JoinType type, FromContent leftTable, FromContent rightTable, java.util.Collection<ADQLColumn> lstColumns)ADQLJoinSQLServer_ADQLQueryFactory. createJoin(ADQLQueryFactory.JoinType type, FromContent leftTable, FromContent rightTable)ADQLJoinADQLParser. JoinSpecification(FromContent leftTable) -
Uses of FromContent in adql.query
Methods in adql.query that return FromContent Modifier and Type Method Description FromContentADQLQuery. getFrom()Gets the FROM clause of this query.Methods in adql.query with parameters of type FromContent Modifier and Type Method Description voidADQLQuery. setFrom(FromContent newFrom)Replaces its FROM clause by the given one. -
Uses of FromContent in adql.query.from
Classes in adql.query.from that implement FromContent Modifier and Type Class Description classADQLJoinDefines a join between two "tables".classADQLTableIt represents any item of the clause FROM: a table name or a sub-query.
A table reference may have an alias (MUST if it is a sub-query).classCrossJoinCross join.classInnerJoinInner join.classOuterJoinInner join.classSQLServer_InnerJoinSpecial implementation ofInnerJoinfor MS SQL Server.classSQLServer_OuterJoinSpecial implementation ofOuterJoinfor MS SQL Server.Methods in adql.query.from that return FromContent Modifier and Type Method Description FromContentADQLJoin. getLeftTable()Gets the left "table" of this join.FromContentADQLJoin. getRightTable()Gets the right "table" of this join.Methods in adql.query.from with parameters of type FromContent Modifier and Type Method Description voidADQLJoin. setLeftTable(FromContent table)Sets the left "table" of this join.voidADQLJoin. setRightTable(FromContent table)Sets the right "table" of this join.Constructors in adql.query.from with parameters of type FromContent Constructor Description ADQLJoin(FromContent left, FromContent right)Builds anADQLJoinwith at least twoFromContentobjects: the left and the right part of the join (usually two tables: T1 JOIN T2).CrossJoin(FromContent left, FromContent right)Builds a CROSS join between the two given "tables".InnerJoin(FromContent left, FromContent right)Builds a NATURAL INNER JOIN between the two given "tables".InnerJoin(FromContent left, FromContent right, ClauseConstraints condition)Builds an INNER JOIN between the two given "tables" with the given condition.InnerJoin(FromContent left, FromContent right, java.util.Collection<ADQLColumn> lstColumns)Builds an INNER JOIN between the two given "tables" with the list of columns to join.OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type)Builds a NATURAL OUTER join between the two given "tables".OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type, ClauseConstraints condition)Builds an OUTER join between the two given "tables" with the given condition.OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type, java.util.Collection<ADQLColumn> lstColumns)Builds an OUTER join between the two given "tables" with a list of columns to join.SQLServer_InnerJoin(FromContent left, FromContent right)Builds a NATURAL INNER JOIN between the two given "tables".SQLServer_InnerJoin(FromContent left, FromContent right, ClauseConstraints condition)Builds an INNER JOIN between the two given "tables" with the given condition.SQLServer_InnerJoin(FromContent left, FromContent right, java.util.Collection<ADQLColumn> lstColumns)Builds an INNER JOIN between the two given "tables" with the given condition.SQLServer_OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type)Builds a NATURAL OUTER join between the two given "tables".SQLServer_OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type, ClauseConstraints condition)Builds an OUTER join between the two given "tables" with the given condition.SQLServer_OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type, java.util.Collection<ADQLColumn> lstColumns)Builds an OUTER join between the two given "tables" with a list of columns to join. -
Uses of FromContent in adql.translator
Methods in adql.translator with parameters of type FromContent Modifier and Type Method Description protected ADQLColumnSQLServerTranslator. generateJoinColumn(FromContent table, DBColumn colMeta, ADQLColumn joinedColumn)Generate an ADQL column of the given table and with the given metadata.java.lang.StringADQLTranslator. translate(FromContent content)java.lang.StringJDBCTranslator. translate(FromContent content)
-