Record Class ColorCode

java.lang.Object
java.lang.Record
net.minecraft.util.ColorCode
Record Components:
rgba -

public record ColorCode(int rgba) extends Record
Mappings:
Namespace Name
named net/minecraft/util/ColorCode
intermediary net/minecraft/class_8805
official bez
named rgba
intermediary comp_1971
official b
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<ColorCode>
     
    private final int
    The field for the rgba record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ColorCode(int rgba)
    Creates an instance of a ColorCode record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    equals(Object object)
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the rgba record component.
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • rgba

      private final int rgba
      The field for the rgba record component.
    • CODEC

      public static final com.mojang.serialization.Codec<ColorCode> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/util/ColorCode;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_46234 Lnet/minecraft/class_8805;field_46234:Lcom/mojang/serialization/Codec;
      official a Lbez;a:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • ColorCode

      public ColorCode(int rgba)
      Creates an instance of a ColorCode record class.
      Parameters:
      rgba - the value for the rgba record component
  • Method Details

    • toString

      public 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 object)
      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:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • rgba

      public int rgba()
      Returns the value of the rgba record component.
      Returns:
      the value of the rgba record component