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

Packages that use Temperature
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 Temperature in net.degreedays.api.data
 

Methods in net.degreedays.api.data that return Temperature
static Temperature Temperature.celsius(double value)
          Returns a non-null Temperature object with the specified Celsius temperature rounded to the nearest 0.1 C.
static Temperature Temperature.fahrenheit(double value)
          Returns a non-null Temperature object with the specified Fahrenheit temperature rounded to the nearest 0.1 F.
 

Methods in net.degreedays.api.data with parameters of type Temperature
static CoolingDegreeDaysCalculation Calculation.coolingDegreeDays(Temperature baseTemperature)
          Returns a non-null CoolingDegreeDaysCalculation object with the specified base temperature.
static HeatingDegreeDaysCalculation Calculation.heatingDegreeDays(Temperature baseTemperature)
          Returns a non-null HeatingDegreeDaysCalculation object with the specified base temperature.
 

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

Methods in net.degreedays.api.data.impl that return Temperature
 Temperature HeatingDegreeDaysCalculation.baseTemperature()
          Returns the non-null base temperature of the heating-degree-days calculation.
 Temperature CoolingDegreeDaysCalculation.baseTemperature()
          Returns the non-null base temperature of the cooling-degree-days calculation.
 

Constructors in net.degreedays.api.data.impl with parameters of type Temperature
CoolingDegreeDaysCalculation(Temperature baseTemperature)
          Constructs a CoolingDegreeDaysCalculation object with the specified base temperature.
HeatingDegreeDaysCalculation(Temperature baseTemperature)
          Constructs a HeatingDegreeDaysCalculation object with the specified base temperature.
 



www.degreedays.net/api/