Class TableItemNode
Represents a table item in the syntax tree.
-
Constructor Summary
Constructors
Creates a new TableItemNode
from a column of a table.
Creates a new TableItemNode
from range of columns of a table.
-
Method Summary
Gets the name of the table.
final void
final void
final void
final void
Sets the name of the table.
-
Constructor Details
-
TableItemNode
Creates a new TableItemNode
from a column of a table.
- Parameters:
tableName
- The name of the table.
itemType
- The part of the table.
columnName
- The column of the table.
-
TableItemNode
Creates a new TableItemNode
from range of columns of a table.
- Parameters:
tableName
- The name of the table.
itemType
- The part of the table.
columnFrom
- The start column.
columnTo
- The end column.
-
Method Details
-
getTableName
public final String getTableName()
Gets the name of the table.
-
setTableName
public final void setTableName(String value)
Sets the name of the table.
-
getItemType
The part of the table. Values are defined in TableItemType.
-
setItemType
The part of the table. Values are defined in TableItemType.
- Parameters:
value
- TableItemType value.
-
getColumnFrom
public final String getColumnFrom()
Gets the start column.
-
setColumnFrom
public final void setColumnFrom(String value)
Sets the start column.
-
getColumnTo
public final String getColumnTo()
Gets the end column.
-
setColumnTo
public final void setColumnTo(String value)
Sets the end column.