public static enum Time.MoonPhase extends java.lang.Enum<Time.MoonPhase>
Enum Constant and Description |
---|
BloodMoon |
FullMoon |
NewMoon |
WaningMoon1 |
WaningMoon2 |
WaningMoon3 |
WaningMoon4 |
WaningMoon5 |
WaxingMoon1 |
WaxingMoon2 |
WaxingMoon3 |
WaxingMoon4 |
WaxingMoon5 |
Modifier and Type | Method and Description |
---|---|
float |
getBrightness()
Gets the brightness (0.0 - 1.0) of this moon phase.
|
static Time.MoonPhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Time.MoonPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Time.MoonPhase NewMoon
public static final Time.MoonPhase WaxingMoon1
public static final Time.MoonPhase WaxingMoon2
public static final Time.MoonPhase WaxingMoon3
public static final Time.MoonPhase WaxingMoon4
public static final Time.MoonPhase WaxingMoon5
public static final Time.MoonPhase FullMoon
public static final Time.MoonPhase WaningMoon1
public static final Time.MoonPhase WaningMoon2
public static final Time.MoonPhase WaningMoon3
public static final Time.MoonPhase WaningMoon4
public static final Time.MoonPhase WaningMoon5
public static final Time.MoonPhase BloodMoon
public static Time.MoonPhase[] values()
for (Time.MoonPhase c : Time.MoonPhase.values()) System.out.println(c);
public static Time.MoonPhase valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic float getBrightness()