Package com.arcadedb.query.sql.parser
Class DropBucketStatement
- java.lang.Object
-
- com.arcadedb.query.sql.parser.SimpleNode
-
- com.arcadedb.query.sql.parser.Statement
-
- com.arcadedb.query.sql.parser.DDLStatement
-
- com.arcadedb.query.sql.parser.DropBucketStatement
-
- All Implemented Interfaces:
Node
public class DropBucketStatement extends DDLStatement
-
-
Field Summary
Fields Modifier and Type Field Description protected PInteger
id
protected boolean
ifExists
protected Identifier
name
-
Fields inherited from class com.arcadedb.query.sql.parser.Statement
CUSTOM_STRICT_SQL, limit, originalStatement, originalStatementAsString, timeout
-
Fields inherited from class com.arcadedb.query.sql.parser.SimpleNode
cachedStringForm, children, value
-
-
Constructor Summary
Constructors Constructor Description DropBucketStatement(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DropBucketStatement
copy()
boolean
equals(Object o)
ResultSet
executeDDL(CommandContext context)
int
hashCode()
void
toString(Map<String,Object> params, StringBuilder builder)
-
Methods inherited from class com.arcadedb.query.sql.parser.DDLStatement
createExecutionPlan, execute, execute
-
Methods inherited from class com.arcadedb.query.sql.parser.Statement
createExecutionPlan, createExecutionPlanNoCache, execute, execute, execute, execute, execute, execute, executionPlanCanBeCached, getLimit, getOriginalStatement, getTimeout, isDDL, isIdempotent, refersToParent, setLimit, setOriginalStatement, setTimeout, toString, validate
-
Methods inherited from class com.arcadedb.query.sql.parser.SimpleNode
getCacheableElements, getIdentityElements, getValue, isCacheable, jjtAddChild, jjtClose, jjtGetChild, jjtGetFirstToken, jjtGetLastToken, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetFirstToken, jjtSetLastToken, jjtSetParent, jjtSetValue, toString
-
-
-
-
Field Detail
-
name
protected Identifier name
-
id
protected PInteger id
-
ifExists
protected boolean ifExists
-
-
Method Detail
-
executeDDL
public ResultSet executeDDL(CommandContext context)
- Specified by:
executeDDL
in classDDLStatement
-
toString
public void toString(Map<String,Object> params, StringBuilder builder)
-
copy
public DropBucketStatement copy()
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classSimpleNode
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSimpleNode
-
-