Creates a new compound tag
Creates a copy of specified compound tag
Removes all the tags from the compound tags
true if specified key exists in compound tag
key to verify for the type
tag type to verify for, one of the Native.NbtDataType constants
true if specified key exists in compound tag and its value is of specified type
Java-array containing all the keys of the compound tag
NBT tag of byte type by its key
NBT tag of compound type by its key. Note that a copy of existing compound tag is created so you cannot edit it directly. Use setCompoundTag method to apply changes or use CompoundTag.getCompoundTagNoClone to edit it directly
directly editable NBT tag of byte type by its key. Don't save reference for future usage since they get destroyed when the parent object is destroyed
NBT tag of double type by its key
NBT tag of float type by its key
NBT tag of 32-bit integer type by its key
NBT tag of 64-bit integer type by its key
NBT tag of list type by its key. Note that a copy of existing list tag is created so you cannot edit it directly. Use setCompoundTag method to apply changes or use CompoundTag.getListTagNoClone to edit it directly
directly editable NBT tag of byte type by its key. Don't save reference for future usage since they get destroyed when the parent object is destroyed
NBT tag of short type by its key
NBT tag of string type by its key
value type for the specified key. One of the Native.NbtDataType constants
Puts value of byte type into compound tag
Puts value of compound type into compound tag
Puts value of double type into compound tag
Puts value of float type into compound tag
Puts value of 32-bit integer type into compound tag
Puts value of 64-bit integer type into compound tag
Puts value of list type into compound tag
Puts value of short type into compound tag
Puts value of string type into compound tag
Removes tag by its key
Converts compound tag to JavaScript object for easier reading
valid JavaScript representation of compound tag
Generated using TypeDoc
List tags represent NBT map-like data structure (key-value pairs). Its values may be of any type, so check the type before calling the appropriate getter