Record Class HiddenByteBuf

java.lang.Object
java.lang.Record
net.minecraft.network.HiddenByteBuf
All Implemented Interfaces:
io.netty.util.ReferenceCounted

public record HiddenByteBuf(io.netty.buffer.ByteBuf contents) extends Record implements io.netty.util.ReferenceCounted
  • Field Details

    • contents

      private final io.netty.buffer.ByteBuf contents
      The field for the contents record component.
  • Constructor Details

    • HiddenByteBuf

      public HiddenByteBuf(io.netty.buffer.ByteBuf contents)
      Creates an instance of a HiddenByteBuf record class.
      Parameters:
      contents - the value for the contents record component
  • Method Details

    • pack

      public static Object pack(Object p_390365_)
    • unpack

      public static Object unpack(Object p_390514_)
    • refCnt

      public int refCnt()
      Specified by:
      refCnt in interface io.netty.util.ReferenceCounted
    • retain

      public HiddenByteBuf retain()
      Specified by:
      retain in interface io.netty.util.ReferenceCounted
    • retain

      public HiddenByteBuf retain(int p_390414_)
      Specified by:
      retain in interface io.netty.util.ReferenceCounted
    • touch

      public HiddenByteBuf touch()
      Specified by:
      touch in interface io.netty.util.ReferenceCounted
    • touch

      public HiddenByteBuf touch(Object p_390392_)
      Specified by:
      touch in interface io.netty.util.ReferenceCounted
    • release

      public boolean release()
      Specified by:
      release in interface io.netty.util.ReferenceCounted
    • release

      public boolean release(int p_390522_)
      Specified by:
      release in interface io.netty.util.ReferenceCounted
    • 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.
    • contents

      public io.netty.buffer.ByteBuf contents()
      Returns the value of the contents record component.
      Returns:
      the value of the contents record component