All Packages Class Hierarchy This Package Previous Next Index
Class Zql.ZGroupBy
java.lang.Object
|
+----Zql.ZGroupBy
- public class ZGroupBy
- extends Object
ZGroupBy: an SQL GROUP BY...HAVING clause
-
ZGroupBy(Vector)
- Create a GROUP BY given a set of Expressions
-
getGroupBy()
- Get the GROUP BY expressions
-
getHaving()
- Get the HAVING clause
-
setHaving(ZExp)
- Initiallize the HAVING part of the GROUP BY
-
toString()
-
ZGroupBy
public ZGroupBy(Vector exps)
- Create a GROUP BY given a set of Expressions
- Parameters:
- exps - A vector of SQL Expressions (ZExp objects).
setHaving
public void setHaving(ZExp e)
- Initiallize the HAVING part of the GROUP BY
- Parameters:
- e - An SQL Expression (the HAVING clause)
getGroupBy
public Vector getGroupBy()
- Get the GROUP BY expressions
- Returns:
- A vector of SQL Expressions (ZExp objects)
getHaving
public ZExp getHaving()
- Get the HAVING clause
- Returns:
- An SQL expression
toString
public String toString()
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index