Package com.arcadedb.query.sql.parser
Class InsertBody
- java.lang.Object
-
- com.arcadedb.query.sql.parser.SimpleNode
-
- com.arcadedb.query.sql.parser.InsertBody
-
- All Implemented Interfaces:
Node
public class InsertBody extends SimpleNode
-
-
Field Summary
Fields Modifier and Type Field Description protected JsonArray
contentArray
protected InputParameter
contentInputParam
protected Json
contentJson
protected List<Identifier>
identifierList
protected List<InsertSetExpression>
setExpressions
protected List<List<Expression>>
valueExpressions
-
Fields inherited from class com.arcadedb.query.sql.parser.SimpleNode
cachedStringForm, children, value
-
-
Constructor Summary
Constructors Constructor Description InsertBody(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InsertBody
copy()
boolean
equals(Object o)
InputParameter
getContentInputParam()
List<Identifier>
getIdentifierList()
JsonArray
getJsonArrayContent()
Json
getJsonContent()
List<InsertSetExpression>
getSetExpressions()
List<List<Expression>>
getValueExpressions()
int
hashCode()
void
toString(Map<String,Object> params, StringBuilder builder)
-
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, refersToParent, toString, toString
-
-
-
-
Field Detail
-
identifierList
protected List<Identifier> identifierList
-
valueExpressions
protected List<List<Expression>> valueExpressions
-
setExpressions
protected List<InsertSetExpression> setExpressions
-
contentJson
protected Json contentJson
-
contentArray
protected JsonArray contentArray
-
contentInputParam
protected InputParameter contentInputParam
-
-
Method Detail
-
toString
public void toString(Map<String,Object> params, StringBuilder builder)
- Overrides:
toString
in classSimpleNode
-
copy
public InsertBody copy()
- Overrides:
copy
in classSimpleNode
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classSimpleNode
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSimpleNode
-
getIdentifierList
public List<Identifier> getIdentifierList()
-
getValueExpressions
public List<List<Expression>> getValueExpressions()
-
getSetExpressions
public List<InsertSetExpression> getSetExpressions()
-
getJsonContent
public Json getJsonContent()
-
getJsonArrayContent
public JsonArray getJsonArrayContent()
-
getContentInputParam
public InputParameter getContentInputParam()
-
-