Enum Class MoonPhase

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

@NullMarked public enum MoonPhase extends Enum<MoonPhase>
Since:
1.16.2
  • Enum Constant Details

    • FULL_MOON

      public static final MoonPhase FULL_MOON
      Since:
      1.16.2
    • WANING_GIBBOUS

      public static final MoonPhase WANING_GIBBOUS
      Since:
      1.16.2
    • LAST_QUARTER

      public static final MoonPhase LAST_QUARTER
      Since:
      1.16.2
    • WANING_CRESCENT

      public static final MoonPhase WANING_CRESCENT
      Since:
      1.16.2
    • NEW_MOON

      public static final MoonPhase NEW_MOON
      Since:
      1.16.2
    • WAXING_CRESCENT

      public static final MoonPhase WAXING_CRESCENT
      Since:
      1.16.2
    • FIRST_QUARTER

      public static final MoonPhase FIRST_QUARTER
      Since:
      1.16.2
    • WAXING_GIBBOUS

      public static final MoonPhase WAXING_GIBBOUS
      Since:
      1.16.2
  • 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

      public static MoonPhase getPhase(long day)
      Since:
      1.16.2