Enum Class MoonPhase

java.lang.Object
java.lang.Enum<MoonPhase>
io.papermc.paper.world.MoonPhase
All Implemented Interfaces:
Serializable, Comparable<MoonPhase>, Constable

public enum MoonPhase extends Enum<MoonPhase>
  • Enum Constant Details

    • FULL_MOON

      public static final MoonPhase FULL_MOON
    • WANING_GIBBOUS

      public static final MoonPhase WANING_GIBBOUS
    • LAST_QUARTER

      public static final MoonPhase LAST_QUARTER
    • WANING_CRESCENT

      public static final MoonPhase WANING_CRESCENT
    • NEW_MOON

      public static final MoonPhase NEW_MOON
    • WAXING_CRESCENT

      public static final MoonPhase WAXING_CRESCENT
    • FIRST_QUARTER

      public static final MoonPhase FIRST_QUARTER
    • WAXING_GIBBOUS

      public static final MoonPhase WAXING_GIBBOUS
  • Method Details

    • values

      public static MoonPhase[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MoonPhase valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getPhase

      @NotNull public static @NotNull MoonPhase getPhase(long day)