Uses of Class
net.degreedays.api.data.Calculation

Packages that use Calculation
net.degreedays.api.data For specifying and receiving degree-day data from the API. 
net.degreedays.api.data.impl Implementations of abstract types from net.degreedays.api.data
 

Uses of Calculation in net.degreedays.api.data
 

Methods in net.degreedays.api.data that return Calculation
 Calculation DatedDataSpec.calculation()
          Returns the non-null Calculation object that defines the way in which the degree days should be calculated in terms of their base temperature and whether they should be heating degree days or cooling degree days.
 Calculation AverageDataSpec.calculation()
          Returns the non-null Calculation object that defines the way in which the degree days should be calculated in terms of their base temperature and whether they should be heating degree days or cooling degree days.
 

Methods in net.degreedays.api.data with parameters of type Calculation
static AverageDataSpec DataSpec.average(Calculation calculation, AverageBreakdown averageBreakdown)
          Returns an non-null AverageDataSpec object with the specified Calculation and AverageBreakdown.
static DatedDataSpec DataSpec.dated(Calculation calculation, DatedBreakdown datedBreakdown)
          Returns a non-null DatedDataSpec object with the specified Calculation and DatedBreakdown.
 

Constructors in net.degreedays.api.data with parameters of type Calculation
AverageDataSpec(Calculation calculation, AverageBreakdown averageBreakdown)
          Constructs an AverageDataSpec object with the specified Calculation and AverageBreakdown.
DatedDataSpec(Calculation calculation, DatedBreakdown datedBreakdown)
          Constructs a DatedDataSpec object with the specified Calculation and DatedBreakdown.
 

Uses of Calculation in net.degreedays.api.data.impl
 

Subclasses of Calculation in net.degreedays.api.data.impl
 class CoolingDegreeDaysCalculation
          A type of Calculation that specifies that cooling degree days should be calculated and that holds the base temperature that they should be calculated to.
 class HeatingDegreeDaysCalculation
          A type of Calculation that specifies that heating degree days should be calculated and that holds the base temperature that they should be calculated to.
 



www.degreedays.net/api/