Class QueryTable


  • @StableMinor(version="14.0",
                 sinceVersion="4.0")
    public class QueryTable
    extends Object
    Represents a table object within a query.
    Since:
    4.0.0
    Version:
    $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
    • Field Detail

      • QUERYTABLE_JOIN_TYPE_LEFT_INNER

        public static final int QUERYTABLE_JOIN_TYPE_LEFT_INNER
        See Also:
        Constant Field Values
      • QUERYTABLE_JOIN_TYPE_LEFT_OUTER

        public static final int QUERYTABLE_JOIN_TYPE_LEFT_OUTER
        See Also:
        Constant Field Values
      • QUERYTABLE_JOIN_TYPE_RIGHT_OUTER

        public static final int QUERYTABLE_JOIN_TYPE_RIGHT_OUTER
        See Also:
        Constant Field Values
      • QUERYTABLE_JOIN_TYPE_CROSS

        public static final int QUERYTABLE_JOIN_TYPE_CROSS
        See Also:
        Constant Field Values
      • tableName

        protected String tableName
      • tableAlias

        protected String tableAlias
      • joinType

        protected int joinType
      • relationId

        protected String relationId
    • Constructor Detail

      • QueryTable

        public QueryTable()
    • Method Detail

      • getTableAlias

        public String getTableAlias()
        Returns:
        Returns the tableAlias.
      • setTableAlias

        public void setTableAlias​(String tableAlias)
        Parameters:
        tableAlias - The tableAlias to set.
      • getTableName

        public String getTableName()
        Returns:
        Returns the tableName.
      • setTableName

        public void setTableName​(String tableName)
        Parameters:
        tableName - The tableName to set.
      • getField

        public QueryField getField​(String fieldName)
        Parameters:
        fieldId -
        Returns:
      • getIdentification

        public String getIdentification()
      • getJoinType

        public int getJoinType()
        Returns:
        Returns the joinType.
      • setJoinType

        public void setJoinType​(int joinType)
        Parameters:
        joinType - The joinType to set.
      • getRelationId

        public String getRelationId()
        Returns:
        Returns the relationId.
      • setRelationId

        public void setRelationId​(String relationId)
        Parameters:
        relationId - The relationId to set.