- java.lang.Object
-
- net.sf.jsqlparser.statement.execute.Execute
-
- All Implemented Interfaces:
Serializable,Model,Statement
public class Execute extends Object implements Statement
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExecute.ExecType
-
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.ExecTypegetExecType()ExpressionListgetExprList()StringgetName()booleanisParenthesis()Deprecated.voidsetExecType(Execute.ExecType execType)voidsetExprList(ExpressionList exprList)voidsetName(String name)voidsetName(List<String> names)StringtoString()ExecutewithExecType(Execute.ExecType execType)ExecutewithExprList(ExpressionList exprList)ExecutewithName(String name)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
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)
-
withExecType
public Execute withExecType(Execute.ExecType execType)
-
withExprList
public Execute withExprList(ExpressionList exprList)
-
-