Package com.aerisweather.aeris.model
Class RecordsDetails
- java.lang.Object
-
- com.aerisweather.aeris.model.RecordsDetails
-
public class RecordsDetails extends Object
Details for the record.
-
-
Field Summary
Fields Modifier and Type Field Description Number
rainIN
If a rain record, the amount of rain in inches.Number
rainMM
If a rain record, the amount of rain in millimeters.Number
snowCM
If a snow record, the amount of snow in centimeters.Number
snowIN
If a snow record, the amount of snow in inches.Number
tempC
If a temperature record, the value in CelsiusNumber
tempF
If a temperature record, the value in FahrenheitString
text
The actual value from the record.
-
Constructor Summary
Constructors Constructor Description RecordsDetails()
-
-
-
Field Detail
-
text
public String text
The actual value from the record.
-
snowIN
public Number snowIN
If a snow record, the amount of snow in inches.
-
snowCM
public Number snowCM
If a snow record, the amount of snow in centimeters.
-
rainIN
public Number rainIN
If a rain record, the amount of rain in inches.
-
rainMM
public Number rainMM
If a rain record, the amount of rain in millimeters.
-
tempF
public Number tempF
If a temperature record, the value in Fahrenheit
-
tempC
public Number tempC
If a temperature record, the value in Celsius
-
-