- java.lang.Object
-
- net.sf.jsqlparser.statement.execute.Execute
-
public class Execute extends java.lang.Object implements Statement
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Execute.ExecType
-
Field Summary
Fields Modifier and Type Field Description private Execute.ExecType
execType
private ExpressionList
exprList
private java.lang.String
name
-
Constructor Summary
Constructors Constructor Description Execute()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T,S>
Taccept(StatementVisitor<T> statementVisitor, S context)
Execute.ExecType
getExecType()
ExpressionList
getExprList()
java.lang.String
getName()
boolean
isParenthesis()
Deprecated.void
setExecType(Execute.ExecType execType)
void
setExprList(ExpressionList exprList)
void
setName(java.lang.String name)
void
setName(java.util.List<java.lang.String> names)
java.lang.String
toString()
Execute
withExecType(Execute.ExecType execType)
Execute
withExprList(ExpressionList exprList)
Execute
withName(java.lang.String name)
-
-
-
Field Detail
-
execType
private Execute.ExecType execType
-
name
private java.lang.String name
-
exprList
private ExpressionList exprList
-
-
Method Detail
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
setName
public void setName(java.util.List<java.lang.String> names)
-
getExprList
public ExpressionList getExprList()
-
setExprList
public void setExprList(ExpressionList exprList)
-
getExecType
public Execute.ExecType getExecType()
-
setExecType
public void setExecType(Execute.ExecType execType)
-
isParenthesis
@Deprecated public boolean isParenthesis()
Deprecated.
-
accept
public <T,S> T accept(StatementVisitor<T> statementVisitor, S context)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
withExecType
public Execute withExecType(Execute.ExecType execType)
-
withName
public Execute withName(java.lang.String name)
-
withExprList
public Execute withExprList(ExpressionList exprList)
-
-