Class NbtByteArray

java.lang.Object
net.minecraft.nbt.NbtByteArray
All Implemented Interfaces:
Iterable<NbtElement>, AbstractNbtList, NbtElement

public final class NbtByteArray extends Object implements AbstractNbtList
Represents an NBT byte array. This object is mutable and backed by byte[]. Its type is 0x7. Like Java arrays, accessing indices that are out of bounds will throw ArrayIndexOutOfBoundsException. The backing array can be obtained via getByteArray().
Mappings:
Namespace Name
named net/minecraft/nbt/NbtByteArray
intermediary net/minecraft/class_2479
official uf
  • Field Details

    • SIZE

      private static final int SIZE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named SIZE Lnet/minecraft/nbt/NbtByteArray;SIZE:I
      intermediary field_41716 Lnet/minecraft/class_2479;field_41716:I
      official b Luf;b:I
    • TYPE

      public static final NbtType<NbtByteArray> TYPE
      Mappings:
      Namespace Name Mixin selector
      named TYPE Lnet/minecraft/nbt/NbtByteArray;TYPE:Lnet/minecraft/nbt/NbtType;
      intermediary field_21024 Lnet/minecraft/class_2479;field_21024:Lnet/minecraft/class_4614;
      official a Luf;a:Lvk;
    • value

      private byte[] value
      Mappings:
      Namespace Name Mixin selector
      named value Lnet/minecraft/nbt/NbtByteArray;value:[B
      intermediary field_11493 Lnet/minecraft/class_2479;field_11493:[B
      official c Luf;c:[B
  • Constructor Details

    • NbtByteArray

      public NbtByteArray(byte[] value)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/nbt/NbtByteArray;<init>([B)V
      intermediary <init> Lnet/minecraft/class_2479;<init>([B)V
      official <init> Luf;<init>([B)V
  • Method Details

    • write

      public void write(DataOutput output) throws IOException
      Writes the NBT element to output.
      Specified by:
      write in interface NbtElement
      Throws:
      IOException
      API Note:
      This is a low-level method for serializing NBT elements; consider using NbtIo, NbtOps, or PacketByteBuf.writeNbt(net.minecraft.nbt.NbtElement) instead.
      Mappings:
      Namespace Name Mixin selector
      named write Lnet/minecraft/nbt/NbtElement;write(Ljava/io/DataOutput;)V
      intermediary method_10713 Lnet/minecraft/class_2520;method_10713(Ljava/io/DataOutput;)V
      official a Lvi;a(Ljava/io/DataOutput;)V
    • getSizeInBytes

      public int getSizeInBytes()
      Specified by:
      getSizeInBytes in interface NbtElement
      Mappings:
      Namespace Name Mixin selector
      named getSizeInBytes Lnet/minecraft/nbt/NbtElement;getSizeInBytes()I
      intermediary method_47988 Lnet/minecraft/class_2520;method_47988()I
      official a Lvi;a()I
    • getType

      public byte getType()
      Returns the type of this NBT element.
      Specified by:
      getType in interface NbtElement
      Returns:
      the type of this NBT element
      Mappings:
      Namespace Name Mixin selector
      named getType Lnet/minecraft/nbt/NbtElement;getType()B
      intermediary method_10711 Lnet/minecraft/class_2520;method_10711()B
      official b Lvi;b()B
    • getNbtType

      public NbtType<NbtByteArray> getNbtType()
      Returns the NBT type definition of this NBT element.
      Specified by:
      getNbtType in interface NbtElement
      Returns:
      the NBT type definition of this NBT element
      Mappings:
      Namespace Name Mixin selector
      named getNbtType Lnet/minecraft/nbt/NbtElement;getNbtType()Lnet/minecraft/nbt/NbtType;
      intermediary method_23258 Lnet/minecraft/class_2520;method_23258()Lnet/minecraft/class_4614;
      official c Lvi;c()Lvk;
    • toString

      public String toString()
      Specified by:
      toString in interface NbtElement
      Overrides:
      toString in class Object
    • copy

      public NbtElement copy()
      Returns an NBT element of equal value that won't change with this element.
      Specified by:
      copy in interface NbtElement
      Returns:
      an NBT element of equal value that won't change with this element
      Mappings:
      Namespace Name Mixin selector
      named copy Lnet/minecraft/nbt/NbtElement;copy()Lnet/minecraft/nbt/NbtElement;
      intermediary method_10707 Lnet/minecraft/class_2520;method_10707()Lnet/minecraft/class_2520;
      official d Lvi;d()Lvi;
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
      Mappings:
      Namespace Name Mixin selector
      named equals Lnet/minecraft/nbt/NbtByteArray;equals(Ljava/lang/Object;)Z
      intermediary equals Lnet/minecraft/class_2479;equals(Ljava/lang/Object;)Z
      official equals Luf;equals(Ljava/lang/Object;)Z
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • accept

      public void accept(NbtElementVisitor visitor)
      Specified by:
      accept in interface NbtElement
      Mappings:
      Namespace Name Mixin selector
      named accept Lnet/minecraft/nbt/NbtElement;accept(Lnet/minecraft/nbt/visitor/NbtElementVisitor;)V
      intermediary method_32289 Lnet/minecraft/class_2520;method_32289(Lnet/minecraft/class_5627;)V
      official a Lvi;a(Lvm;)V
    • getByteArray

      public byte[] getByteArray()
      Returns the underlying byte array.
      Returns:
      the underlying byte array
      API Note:
      This does not copy the array, so modifications to the returned array also apply to this NBT byte array.
      Mappings:
      Namespace Name Mixin selector
      named getByteArray Lnet/minecraft/nbt/NbtByteArray;getByteArray()[B
      intermediary method_10521 Lnet/minecraft/class_2479;method_10521()[B
      official e Luf;e()[B
    • size

      public int size()
      Specified by:
      size in interface AbstractNbtList
    • method_10534

      public NbtByte method_10534(int int2)
      Mappings:
      Namespace Name Mixin selector
      named method_10534 Lnet/minecraft/nbt/NbtByteArray;method_10534(I)Lnet/minecraft/nbt/NbtByte;
      intermediary method_10523 Lnet/minecraft/class_2479;method_10523(I)Lnet/minecraft/class_2481;
      official a Luf;a(I)Lug;
    • setElement

      public boolean setElement(int index, NbtElement element)
      Sets the element at index to element. Does nothing if the types were incompatible.
      Specified by:
      setElement in interface AbstractNbtList
      Returns:
      whether the element was actually set
      Mappings:
      Namespace Name Mixin selector
      named setElement Lnet/minecraft/nbt/AbstractNbtList;setElement(ILnet/minecraft/nbt/NbtElement;)Z
      intermediary method_10535 Lnet/minecraft/class_2483;method_10535(ILnet/minecraft/class_2520;)Z
      official a Luh;a(ILvi;)Z
    • addElement

      public boolean addElement(int index, NbtElement element)
      Inserts element at index. Does nothing if the types were incompatible.
      Specified by:
      addElement in interface AbstractNbtList
      Returns:
      whether the element was actually added
      Mappings:
      Namespace Name Mixin selector
      named addElement Lnet/minecraft/nbt/AbstractNbtList;addElement(ILnet/minecraft/nbt/NbtElement;)Z
      intermediary method_10533 Lnet/minecraft/class_2483;method_10533(ILnet/minecraft/class_2520;)Z
      official b Luh;b(ILvi;)Z
    • method_10536

      public NbtByte method_10536(int int2)
      Mappings:
      Namespace Name Mixin selector
      named method_10536 Lnet/minecraft/nbt/NbtByteArray;method_10536(I)Lnet/minecraft/nbt/NbtByte;
      intermediary method_17804 Lnet/minecraft/class_2479;method_17804(I)Lnet/minecraft/class_2481;
      official b Luf;b(I)Lug;
    • clear

      public void clear()
      Specified by:
      clear in interface AbstractNbtList
    • asByteArray

      public Optional<byte[]> asByteArray()
      Specified by:
      asByteArray in interface NbtElement
      Mappings:
      Namespace Name Mixin selector
      named asByteArray Lnet/minecraft/nbt/NbtElement;asByteArray()Ljava/util/Optional;
      intermediary method_68559 Lnet/minecraft/class_2520;method_68559()Ljava/util/Optional;
      official f Lvi;f()Ljava/util/Optional;
    • doAccept

      public NbtScanner.Result doAccept(NbtScanner visitor)
      Specified by:
      doAccept in interface NbtElement
      Mappings:
      Namespace Name Mixin selector
      named doAccept Lnet/minecraft/nbt/NbtElement;doAccept(Lnet/minecraft/nbt/scanner/NbtScanner;)Lnet/minecraft/nbt/scanner/NbtScanner$Result;
      intermediary method_39850 Lnet/minecraft/class_2520;method_39850(Lnet/minecraft/class_6836;)Lnet/minecraft/class_6836$class_6838;
      official a Lvi;a(Lvf;)Lvf$b;