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 String
code
Numeric representation of the record type.String
dateTimeISO
ISO 8601 date of the date/time of the eventRecordsDetails
details
String
location
The brief description of the location, usually contains the location or relative distance from a cityPreviousRecord
prev
Station
station
boolean
tied
If tied a previous record = true, otherwise false.Number
timestamp
UNIX timestamp when the event took placeString
type
The 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)
-
-