Record Class KNumberVariables

java.lang.Object
java.lang.Record
dev.latvian.mods.klib.knumber.KNumberVariables

public record KNumberVariables(Map<String, Ref<KNumber>> numbers, Map<String, Ref<KVector>> vectors) extends Record
  • Field Details

    • EMPTY

      public static final KNumberVariables EMPTY
    • CODEC

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

      public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, KNumberVariables> STREAM_CODEC
  • Constructor Details

    • KNumberVariables

      public KNumberVariables()
    • KNumberVariables

      public KNumberVariables(Map<String, Ref<KNumber>> numbers, Map<String, Ref<KVector>> vectors)
      Creates an instance of a KNumberVariables record class.
      Parameters:
      numbers - the value for the numbers record component
      vectors - the value for the vectors record component
  • Method Details

    • vec

      public static KNumberVariables vec(String name, Ref<KVector> vec)
    • num

      public static KNumberVariables num(String name, Ref<KNumber> num)
    • merge

      public KNumberVariables merge(KNumberVariables other)
    • replace

      public void replace(KNumberVariables variables)
    • isEmpty

      public boolean isEmpty()
    • 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 Objects::equals(Object,Object).
      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.
    • numbers

      public Map<String, Ref<KNumber>> numbers()
      Returns the value of the numbers record component.
      Returns:
      the value of the numbers record component
    • vectors

      public Map<String, Ref<KVector>> vectors()
      Returns the value of the vectors record component.
      Returns:
      the value of the vectors record component