Class CompoundTagType

java.lang.Object
com.viaversion.viaversion.api.type.Type<com.viaversion.nbt.tag.CompoundTag>
com.viaversion.viaversion.api.type.types.misc.CompoundTagType
All Implemented Interfaces:
ByteBufReader<com.viaversion.nbt.tag.CompoundTag>, ByteBufWriter<com.viaversion.nbt.tag.CompoundTag>

public class CompoundTagType extends Type<com.viaversion.nbt.tag.CompoundTag>
Compound tag type, functionally equivalent to TagType with an additional cast.

On the network, this is technically written as any tag, but almost always cast to and checked as a CompoundTag, so we provide this type for convenience.

  • Constructor Details

    • CompoundTagType

      public CompoundTagType()
  • Method Details

    • read

      public com.viaversion.nbt.tag.CompoundTag read(io.netty.buffer.ByteBuf buffer)
      Description copied from interface: ByteBufReader
      Reads a value from a ByteBuf.
      Parameters:
      buffer - buffer to read from
      Returns:
      type based on the class type
    • write

      public void write(io.netty.buffer.ByteBuf buffer, com.viaversion.nbt.tag.CompoundTag object)
      Description copied from interface: ByteBufWriter
      Writes an object to a type to a ByteBuf.
      Parameters:
      buffer - buffer to write to
      object - value to write