Exemplo n.º 1
0
 public String toString() {
   if (aggregationFunction == AggregationFunction.NONE) {
     return col.getColName();
   } else {
     return aggregationFunction.toString() + "(" + col.getColName() + ")";
   }
 }
Exemplo n.º 2
0
 public String getColName() {
   return col.getColName();
 }