Class Comment
- java.lang.Object
-
- net.sf.jsqlparser.statement.comment.Comment
-
public class Comment extends java.lang.Object implements Statement
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Comment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(StatementVisitor statementVisitor)
Column
getColumn()
StringValue
getComment()
Table
getTable()
Table
getView()
void
setColumn(Column column)
void
setComment(StringValue comment)
void
setTable(Table table)
void
setView(Table view)
java.lang.String
toString()
Comment
withColumn(Column column)
Comment
withComment(StringValue comment)
Comment
withTable(Table table)
-
-
-
Field Detail
-
table
private Table table
-
column
private Column column
-
view
private Table view
-
comment
private StringValue comment
-
-
Method Detail
-
accept
public void accept(StatementVisitor statementVisitor)
-
getTable
public Table getTable()
-
setTable
public void setTable(Table table)
-
getColumn
public Column getColumn()
-
setColumn
public void setColumn(Column column)
-
getView
public Table getView()
-
setView
public void setView(Table view)
-
getComment
public StringValue getComment()
-
setComment
public void setComment(StringValue comment)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
withComment
public Comment withComment(StringValue comment)
-
-