Package com.aerisweather.aeris.model
Class RecordsReport
- java.lang.Object
-
- com.aerisweather.aeris.model.RecordsReport
-
public class RecordsReport extends Object
-
-
Field Summary
Fields Modifier and Type Field Description StringcodeNumeric representation of the record type.StringdateTimeISOISO 8601 date of the date/time of the eventRecordsDetailsdetailsStringlocationThe brief description of the location, usually contains the location or relative distance from a cityPreviousRecordprevStationstationbooleantiedIf tied a previous record = true, otherwise false.NumbertimestampUNIX timestamp when the event took placeStringtypeThe record type
prcp = precipitation / rain
snow = snow
maxt = maximum temperature
mint = minimum temperature
himn = high minimum temperature
lomx = low minimum temperature
-
Constructor Summary
Constructors Constructor Description RecordsReport(Report report)
-
-
-
Field Detail
-
timestamp
public Number timestamp
UNIX timestamp when the event took place
-
dateTimeISO
public String dateTimeISO
ISO 8601 date of the date/time of the event
-
type
public String type
The record type
prcp = precipitation / rain
snow = snow
maxt = maximum temperature
mint = minimum temperature
himn = high minimum temperature
lomx = low minimum temperature
-
code
public String code
Numeric representation of the record type.
-
station
public Station station
-
location
public String location
The brief description of the location, usually contains the location or relative distance from a city
-
details
public RecordsDetails details
-
tied
public boolean tied
If tied a previous record = true, otherwise false.
-
prev
public PreviousRecord prev
-
-
Constructor Detail
-
RecordsReport
public RecordsReport(Report report)
-
-