Uses of Class
planetj.database.report.ColumnFunction

Packages that use ColumnFunction
planetj.database.report   
 

Uses of ColumnFunction in planetj.database.report
 

Subclasses of ColumnFunction in planetj.database.report
 class ColumnAverage
          The column averaging function
 class ColumnCount
          The column count function
 class ColumnMax
          The column max function
 class ColumnMin
          The column min function
 class ColumnSum
          The column summing function
 

Methods in planetj.database.report that return ColumnFunction
 ColumnFunction ColumnFunction.cloneColumnFunction()
          Clones this ColumnFunction
static ColumnFunction ColumnFunction.getColumnFunction(java.lang.String pToken, java.lang.String pFieldName)
          Gets a ColumnFunction object for the specified token and field name.
 

Methods in planetj.database.report with parameters of type ColumnFunction
 void ColumnSum.set(ColumnFunction cf)
          Sets the internal state of this ColumnFunction to be the same as the state of another ColumnFunction.
 void ColumnMin.set(ColumnFunction cf)
          Sets the internal state of this ColumnFunction to be the same as the state of another ColumnFunction.
 void ColumnMax.set(ColumnFunction cf)
          Sets the internal state of this ColumnFunction to be the same as the state of another ColumnFunction.
abstract  void ColumnFunction.set(ColumnFunction cf)
          Sets the internal state of this ColumnFunction to be the same as the state of another ColumnFunction.
 void ColumnCount.set(ColumnFunction cf)
          Sets the internal state of this ColumnFunction to be the same as the state of another ColumnFunction.
 void ColumnAverage.set(ColumnFunction cf)
          Sets the internal state of this ColumnFunction to be the same as the state of another ColumnFunction.