Package com.aerisweather.aeris.model
Class Moon
- java.lang.Object
-
- com.aerisweather.aeris.model.Moon
-
public class Moon extends Object
Moon information from the request.
-
-
Field Summary
Fields Modifier and Type Field Description MoonPhase
phase
Number
rise
UNIX timestamp of the moon rise.String
riseISO
ISO 8601 date of the moon rise.Number
set
UNIX timestamp of the moon set.String
setISO
ISO 8601 date of the moon set.Number
transit
UNIX timestamp of the point the moon is "overhead".String
transitISO
ISO 8601 date of the point the moon is "overhead".Number
underfoot
UNIX timestamp of the point the moon is "underfoot".String
underfootISO
ISO 8601 date of the point the moon is "underfoot".
-
Constructor Summary
Constructors Constructor Description Moon()
-
-
-
Field Detail
-
rise
public Number rise
UNIX timestamp of the moon rise. null if no moon rise
-
riseISO
public String riseISO
ISO 8601 date of the moon rise. null if no moon rise
-
set
public Number set
UNIX timestamp of the moon set. null if no moon set
-
setISO
public String setISO
ISO 8601 date of the moon set. null if no moon set
-
transit
public Number transit
UNIX timestamp of the point the moon is "overhead". Null if no transit.
-
transitISO
public String transitISO
ISO 8601 date of the point the moon is "overhead". Null if no transit.
-
underfoot
public Number underfoot
UNIX timestamp of the point the moon is "underfoot". Null if no transit.
-
underfootISO
public String underfootISO
ISO 8601 date of the point the moon is "underfoot". Null if no transit.
-
phase
public MoonPhase phase
-
-