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