Class AllTableColumns
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.statement.select.AllColumns
-
- net.sf.jsqlparser.statement.select.AllTableColumns
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class AllTableColumns extends AllColumns
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private Table
table
-
Fields inherited from class net.sf.jsqlparser.statement.select.AllColumns
exceptColumns, replaceExpressions
-
-
Constructor Summary
Constructors Constructor Description AllTableColumns(Table table)
AllTableColumns(Table table, ExpressionList<Column> exceptColumns, java.util.List<SelectItem<?>> replaceExpressions)
AllTableColumns(Table table, AllColumns allColumns)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExpressionVisitor expressionVisitor)
java.lang.StringBuilder
appendTo(java.lang.StringBuilder builder)
Table
getTable()
void
setTable(Table table)
AllTableColumns
withTable(Table table)
-
Methods inherited from class net.sf.jsqlparser.statement.select.AllColumns
addExceptColumn, addReplaceExpression, getExceptColumns, getReplaceExpressions, setExceptColumns, setReplaceExpressions, toString
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
getASTNode, setASTNode
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.jsqlparser.parser.ASTNodeAccess
getASTNode, setASTNode
-
-
-
-
Field Detail
-
table
private Table table
-
-
Constructor Detail
-
AllTableColumns
public AllTableColumns(Table table, ExpressionList<Column> exceptColumns, java.util.List<SelectItem<?>> replaceExpressions)
-
AllTableColumns
public AllTableColumns(Table table)
-
AllTableColumns
public AllTableColumns(Table table, AllColumns allColumns)
-
-
Method Detail
-
getTable
public Table getTable()
-
setTable
public void setTable(Table table)
-
withTable
public AllTableColumns withTable(Table table)
-
appendTo
public java.lang.StringBuilder appendTo(java.lang.StringBuilder builder)
- Overrides:
appendTo
in classAllColumns
-
accept
public void accept(ExpressionVisitor expressionVisitor)
- Specified by:
accept
in interfaceExpression
- Overrides:
accept
in classAllColumns
-
-