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 MoonPhasephaseNumberriseUNIX timestamp of the moon rise.StringriseISOISO 8601 date of the moon rise.NumbersetUNIX timestamp of the moon set.StringsetISOISO 8601 date of the moon set.NumbertransitUNIX timestamp of the point the moon is "overhead".StringtransitISOISO 8601 date of the point the moon is "overhead".NumberunderfootUNIX timestamp of the point the moon is "underfoot".StringunderfootISOISO 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
-
-