Package com.arcadedb.query.sql.parser
Class GroupBy
- java.lang.Object
-
- com.arcadedb.query.sql.parser.SimpleNode
-
- com.arcadedb.query.sql.parser.GroupBy
-
- All Implemented Interfaces:
Node
public class GroupBy extends SimpleNode
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Expression>
items
-
Fields inherited from class com.arcadedb.query.sql.parser.SimpleNode
cachedStringForm, children, value
-
-
Constructor Summary
Constructors Constructor Description GroupBy(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GroupBy
copy()
void
extractSubQueries(SubQueryCollector collector)
protected SimpleNode[]
getCacheableElements()
protected Object[]
getIdentityElements()
List<Expression>
getItems()
void
toString(Map<String,Object> params, StringBuilder builder)
-
Methods inherited from class com.arcadedb.query.sql.parser.SimpleNode
equals, getValue, hashCode, isCacheable, jjtAddChild, jjtClose, jjtGetChild, jjtGetFirstToken, jjtGetLastToken, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetFirstToken, jjtSetLastToken, jjtSetParent, jjtSetValue, refersToParent, toString, toString
-
-
-
-
Field Detail
-
items
protected List<Expression> items
-
-
Method Detail
-
toString
public void toString(Map<String,Object> params, StringBuilder builder)
- Overrides:
toString
in classSimpleNode
-
getItems
public List<Expression> getItems()
-
copy
public GroupBy copy()
- Overrides:
copy
in classSimpleNode
-
getIdentityElements
protected Object[] getIdentityElements()
- Overrides:
getIdentityElements
in classSimpleNode
-
extractSubQueries
public void extractSubQueries(SubQueryCollector collector)
-
getCacheableElements
protected SimpleNode[] getCacheableElements()
- Overrides:
getCacheableElements
in classSimpleNode
-
-