Record Class ClockTimeMarker

java.lang.Object
java.lang.Record
net.minecraft.world.clock.ClockTimeMarker

public record ClockTimeMarker(Holder<WorldClock> clock, int ticks, Optional<Integer> periodTicks, boolean showInCommands) extends Record
  • Field Details

    • clock

      private final Holder<WorldClock> clock
      The field for the clock record component.
    • ticks

      private final int ticks
      The field for the ticks record component.
    • periodTicks

      private final Optional<Integer> periodTicks
      The field for the periodTicks record component.
    • showInCommands

      private final boolean showInCommands
      The field for the showInCommands record component.
    • KEY_CODEC

      public static final com.mojang.serialization.Codec<ResourceKey<ClockTimeMarker>> KEY_CODEC
  • Constructor Details

    • ClockTimeMarker

      public ClockTimeMarker(Holder<WorldClock> clock, int ticks, Optional<Integer> periodTicks, boolean showInCommands)
      Creates an instance of a ClockTimeMarker record class.
      Parameters:
      clock - the value for the clock record component
      ticks - the value for the ticks record component
      periodTicks - the value for the periodTicks record component
      showInCommands - the value for the showInCommands record component
  • Method Details

    • getRepetitionCount

      public long getRepetitionCount(long totalTicks)
    • getNextOccurenceAfter

      public long getNextOccurenceAfter(long totalTicks)
    • occursAt

      public boolean occursAt(long totalTicks)
    • durationToNext

      private static long durationToNext(int periodTicks, long from, long to)
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • clock

      public Holder<WorldClock> clock()
      Returns the value of the clock record component.
      Returns:
      the value of the clock record component
    • ticks

      public int ticks()
      Returns the value of the ticks record component.
      Returns:
      the value of the ticks record component
    • periodTicks

      public Optional<Integer> periodTicks()
      Returns the value of the periodTicks record component.
      Returns:
      the value of the periodTicks record component
    • showInCommands

      public boolean showInCommands()
      Returns the value of the showInCommands record component.
      Returns:
      the value of the showInCommands record component