Package quadbase.reportdesigner.util
Interface IAggregateConstants
- All Known Implementing Classes:
ColInfo
public interface IAggregateConstants
Utility class for formula to contain basic Formula Type values as constants.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String[]For internal use onlystatic final shortGet the average of the datastatic final shortGet the count of the datastatic final shortGet the distinct count of the datastatic final shortGet the first datastatic final shortGet the last datastatic final shortGet the maximum of the datastatic final shortGet the median of the datastatic final shortGet the minimum of the datastatic final shortNo action on datastatic final shortGet the standard deviaton of the datastatic final shortSum the datastatic final shortGet the sum of the square of each datastatic final shortGet the variance of the data
-
Field Details
-
NONE
static final short NONENo action on data- See Also:
-
SUM
static final short SUMSum the data- See Also:
-
MAX
static final short MAXGet the maximum of the data- See Also:
-
MIN
static final short MINGet the minimum of the data- See Also:
-
COUNT
static final short COUNTGet the count of the data- See Also:
-
AVG
static final short AVGGet the average of the data- See Also:
-
FIRST
static final short FIRSTGet the first data- See Also:
-
LAST
static final short LASTGet the last data- See Also:
-
SUMSQUARE
static final short SUMSQUAREGet the sum of the square of each data- See Also:
-
VARIANCE
static final short VARIANCEGet the variance of the data- See Also:
-
STDDEV
static final short STDDEVGet the standard deviaton of the data- See Also:
-
COUNTDISTINCT
static final short COUNTDISTINCTGet the distinct count of the data- See Also:
-
MEDIAN
static final short MEDIANGet the median of the data- See Also:
-
AGGR
For internal use only
-