| 1 10 package org.mmbase.storage.search; 11 12 24 public interface AggregatedField extends StepField { 25 26 30 public final static int AGGREGATION_TYPE_GROUP_BY = 1; 31 32 36 public final static int AGGREGATION_TYPE_COUNT = 2; 37 38 42 public final static int AGGREGATION_TYPE_COUNT_DISTINCT = 3; 43 44 45 public final static int AGGREGATION_TYPE_MIN = 4; 46 47 48 public final static int AGGREGATION_TYPE_MAX = 5; 49 50 55 String [] AGGREGATION_TYPE_DESCRIPTIONS = new String [] { 56 null, "group by", "count", "count distinct", 58 "min", "max" 59 }; 60 61 64 public int getAggregationType(); 65 66 76 public boolean equals(Object obj); 77 78 99 public String toString(); 100 } | Popular Tags |