Record Class Timestamp

java.lang.Object
java.lang.Record
dev.latvian.mods.klib.util.Timestamp

public record Timestamp(long utc, long tick) extends Record
  • Field Details

    • EPOCH

      public static final long EPOCH
      See Also:
    • NONE

      public static final Timestamp NONE
    • MAP_CODEC

      public static final com.mojang.serialization.MapCodec<Timestamp> MAP_CODEC
    • CODEC

      public static final com.mojang.serialization.Codec<Timestamp> CODEC
    • STREAM_CODEC

      public static final net.minecraft.network.codec.StreamCodec<io.netty.buffer.ByteBuf,Timestamp> STREAM_CODEC
    • DATA_TYPE

      public static final DataType<Timestamp> DATA_TYPE
  • Constructor Details

    • Timestamp

      public Timestamp(long utc, long tick)
      Creates an instance of a Timestamp record class.
      Parameters:
      utc - the value for the utc record component
      tick - the value for the tick record component
  • Method Details

    • deflateUTC

      public static long deflateUTC(long value)
    • inflateUTC

      public static long inflateUTC(long value)
    • of

      public static Timestamp of(long utc, long tick)
    • now

      public static Timestamp now(long tick)
    • read

      public static Timestamp read(DataInput in) throws IOException
      Throws:
      IOException
    • write

      public void write(DataOutput out) throws IOException
      Throws:
      IOException
    • isNone

      public boolean isNone()
    • toInstant

      public Instant toInstant()
    • 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. All components in this record class are compared with '=='.
      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.
    • utc

      public long utc()
      Returns the value of the utc record component.
      Returns:
      the value of the utc record component
    • tick

      public long tick()
      Returns the value of the tick record component.
      Returns:
      the value of the tick record component