diff --git a/v2-api/allclasses-frame.html b/v2-api/allclasses-frame.html index 4cfabb10a..bbda68e31 100644 --- a/v2-api/allclasses-frame.html +++ b/v2-api/allclasses-frame.html @@ -2,10 +2,10 @@ - + All Classes (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -44,6 +44,7 @@

All Classes

  • NBTDoubleList
  • NBTEntity
  • NBTFile
  • +
  • NBTFileHandle
  • NBTFloatList
  • NBTGameProfile
  • NBTHandler
  • diff --git a/v2-api/allclasses-noframe.html b/v2-api/allclasses-noframe.html index fb63e0700..f991bb2e9 100644 --- a/v2-api/allclasses-noframe.html +++ b/v2-api/allclasses-noframe.html @@ -2,10 +2,10 @@ - + All Classes (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -44,6 +44,7 @@

    All Classes

  • NBTDoubleList
  • NBTEntity
  • NBTFile
  • +
  • NBTFileHandle
  • NBTFloatList
  • NBTGameProfile
  • NBTHandler
  • diff --git a/v2-api/constant-values.html b/v2-api/constant-values.html index c63f9a838..51352519b 100644 --- a/v2-api/constant-values.html +++ b/v2-api/constant-values.html @@ -2,10 +2,10 @@ - + Constant Field Values (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -168,6 +168,13 @@

    de.tr7zw.*

    VERSION1_21 3953 + + + +public static final int +VERSION1_21_2 +4080 + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/NBT.html b/v2-api/de/tr7zw/changeme/nbtapi/NBT.html index cfe097c29..185d9fc9a 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/NBT.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/NBT.html @@ -2,10 +2,10 @@ - + NBT (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -19,7 +19,7 @@ catch(err) { } //--> -var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":9,"i19":9,"i20":9,"i21":9,"i22":9,"i23":9,"i24":9,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":9,"i32":9,"i33":9,"i34":9,"i35":9,"i36":9,"i37":9,"i38":9}; +var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":9,"i19":9,"i20":9,"i21":9,"i22":9,"i23":9,"i24":9,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":9,"i32":9,"i33":9,"i34":9,"i35":9,"i36":9,"i37":9,"i38":9,"i39":9,"i40":9,"i41":9,"i42":9,"i43":9,"i44":9,"i45":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; @@ -199,15 +199,37 @@

    Method Summary

    +static void +getComponents(org.bukkit.inventory.ItemStack item, + Consumer<ReadableNBT> consumer) +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    + + + +static <T> T +getComponents(org.bukkit.inventory.ItemStack item, + Function<ReadableNBT,T> function) +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    + + + +static NBTFileHandle +getFileHandle(File file) +
    Creates a NBTFileHandle that uses @param file to store its data.
    + + + static <T> T getPersistentData(org.bukkit.block.BlockState blockState, Function<ReadableNBT,T> getter) -
    It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
    +
    It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
    - + static <T> T getPersistentData(org.bukkit.entity.Entity entity, Function<ReadableNBT,T> getter) @@ -216,31 +238,31 @@

    Method Summary

    entities persistent data container - + static org.bukkit.inventory.ItemStack[] itemStackArrayFromNBT(ReadableNBT compound)
    It converts a ReadableNBT object into an array of ItemStacks
    - + static ReadWriteNBT itemStackArrayToNBT(org.bukkit.inventory.ItemStack[] itemStacks)
    It converts an array of ItemStacks into a ReadWriteNBT object
    - + static org.bukkit.inventory.ItemStack itemStackFromNBT(ReadableNBT compound)
    It converts a ReadableNBT object into an ItemStack
    - + static ReadWriteNBT itemStackToNBT(org.bukkit.inventory.ItemStack itemStack)
    It converts an ItemStack to a ReadWriteNBT object
    - + static <X extends NBTProxy>
    void
    modify(org.bukkit.block.BlockState blockState, Class<X> wrapper, @@ -248,7 +270,7 @@

    Method Summary

    It takes an block entity and a function to modify the entity via the proxy
    - + static <T,X extends NBTProxy>
    T
    modify(org.bukkit.block.BlockState blockState, Class<X> wrapper, @@ -256,7 +278,7 @@

    Method Summary

    It takes an block entity and a function to modify the entity via the proxy
    - + static void modify(org.bukkit.block.BlockState blockState, Consumer<ReadWriteNBT> consumer) @@ -265,7 +287,7 @@

    Method Summary

    NBTTileEntity object to the consumer - + static <T> T modify(org.bukkit.block.BlockState blockState, Function<ReadWriteNBT,T> function) @@ -273,7 +295,7 @@

    Method Summary

    generic type T. - + static <X extends NBTProxy>
    void
    modify(org.bukkit.entity.Entity entity, Class<X> wrapper, @@ -281,7 +303,7 @@

    Method Summary

    It takes an entity and a function to modify the entity via the proxy
    - + static <T,X extends NBTProxy>
    T
    modify(org.bukkit.entity.Entity entity, Class<X> wrapper, @@ -289,7 +311,7 @@

    Method Summary

    It takes an entity and a function to modify the entity via the proxy
    - + static void modify(org.bukkit.entity.Entity entity, Consumer<ReadWriteNBT> consumer) @@ -297,7 +319,7 @@

    Method Summary

    function to the entity - + static <T> T modify(org.bukkit.entity.Entity entity, Function<ReadWriteNBT,T> function) @@ -305,7 +327,7 @@

    Method Summary

    generic type T. - + static <X extends NBTProxy>
    void
    modify(org.bukkit.inventory.ItemStack item, Class<X> wrapper, @@ -313,7 +335,7 @@

    Method Summary

    It takes an ItemStack, applies a function to its NBT wrapped in a proxy.
    - + static <T,X extends NBTProxy>
    T
    modify(org.bukkit.inventory.ItemStack item, Class<X> wrapper, @@ -322,7 +344,7 @@

    Method Summary

    returns the result of the function - + static void modify(org.bukkit.inventory.ItemStack item, Consumer<ReadWriteItemNBT> consumer) @@ -330,7 +352,7 @@

    Method Summary

    the Consumer to the ItemStacks NBT - + static <T> T modify(org.bukkit.inventory.ItemStack item, Function<ReadWriteItemNBT,T> function) @@ -338,7 +360,7 @@

    Method Summary

    of the function - + static void modifyComponents(org.bukkit.inventory.ItemStack item, Consumer<ReadWriteNBT> consumer) @@ -346,7 +368,7 @@

    Method Summary

    the Consumer to the ItemStacks Components as NBT. - + static <T> T modifyComponents(org.bukkit.inventory.ItemStack item, Function<ReadWriteNBT,T> function) @@ -354,7 +376,7 @@

    Method Summary

    the Consumer to the ItemStacks Components as NBT. - + static void modifyPersistentData(org.bukkit.block.BlockState blockState, Consumer<ReadWriteNBT> consumer) @@ -362,7 +384,7 @@

    Method Summary

    the persistent data container of the block entity - + static <T> T modifyPersistentData(org.bukkit.block.BlockState blockState, Function<ReadWriteNBT,T> function) @@ -370,7 +392,7 @@

    Method Summary

    entities persistent data and returns a generic type T. - + static void modifyPersistentData(org.bukkit.entity.Entity entity, Consumer<ReadWriteNBT> consumer) @@ -378,7 +400,7 @@

    Method Summary

    value - + static <T> T modifyPersistentData(org.bukkit.entity.Entity entity, Function<ReadWriteNBT,T> function) @@ -386,46 +408,71 @@

    Method Summary

    persistent data and returns a generic type T. - + static ReadWriteNBT parseNBT(String nbtString)
    It takes a nbt json string, and returns a ReadWriteNBT object
    - + static boolean preloadApi()
    Utility method for shaded versions to preload and check the API during onEnable.
    - + +static ReadWriteNBT +readFile(File file) +
    Reads NBT data from the provided file.
    + + + static <T extends NBTProxy>
    T
    readNbt(org.bukkit.block.BlockState blockState, Class<T> wrapper)
    Create a read only proxy class for NBT, given an annotated interface.
    - + static <T extends NBTProxy>
    T
    readNbt(org.bukkit.entity.Entity entity, Class<T> wrapper)
    Create a read only proxy class for NBT, given an annotated interface.
    - + +static ReadWriteNBT +readNBT(InputStream stream) +
    Reads in an NBT stream and returns a ReadWriteNBT object
    + + + static ReadableNBT readNbt(org.bukkit.inventory.ItemStack item)
    Get a read only instance of the items NBT.
    - + static <T extends NBTProxy>
    T
    readNbt(org.bukkit.inventory.ItemStack item, Class<T> wrapper)
    Create a read only proxy class for NBT, given an annotated interface.
    + +static ReadWriteNBT +wrapNMSTag(Object nmsNbtTag) +
    Helper method for other developers using NMS.
    + + + +static void +writeFile(File file, + ReadWriteNBT nbt) +
    Saves NBT data to the provided file.
    + +
    • @@ -622,9 +669,9 @@

      getPersistentData

      getPersistentData

      public static <T> T getPersistentData(org.bukkit.block.BlockState blockState,
                                             Function<ReadableNBT,T> getter)
      -
      It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
      +
      It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
      Parameters:
      blockState - The block state of the block you want to get the data from.
      @@ -700,7 +747,7 @@

      modifyComponents

      Consumer<ReadWriteNBT> consumer)
      It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. - This method is quiet expensive, so don't overuse it.
      + This method is quite expensive, so don't overuse it.
      Parameters:
      item - The item you want to modify the components of
      @@ -718,7 +765,7 @@

      modifyComponents

      Function<ReadWriteNBT,T> function)
      It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. - This method is quiet expensive, so don't overuse it.
      + This method is quite expensive, so don't overuse it.
      Parameters:
      item - The item you want to modify the components of
      @@ -728,6 +775,44 @@

      modifyComponents

    + + + +
      +
    • +

      getComponents

      +
      public static void getComponents(org.bukkit.inventory.ItemStack item,
      +                                 Consumer<ReadableNBT> consumer)
      +
      It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. + This method is quite expensive, try to cache the results/use it smartly.
      +
      +
      Parameters:
      +
      item - The item you want to read the components of
      +
      consumer - The consumer that will be used to read the components.
      +
      +
    • +
    + + + +
      +
    • +

      getComponents

      +
      public static <T> T getComponents(org.bukkit.inventory.ItemStack item,
      +                                  Function<ReadableNBT,T> function)
      +
      It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. + This method is quite expensive, try to cache the results/use it smartly.
      +
      +
      Parameters:
      +
      item - The item you want to read the components of
      +
      function - The consumer that will be used to read the components.
      +
      Returns:
      +
      The return type is the same as the return type of the function.
      +
      +
    • +
    @@ -982,7 +1067,100 @@

    parseNBT

    Parameters:
    nbtString - The NBT string to parse.
    Returns:
    -
    A new NBTContainer object.
    +
    A new ReadWriteNBT object.
    + + + + + + +
      +
    • +

      readNBT

      +
      public static ReadWriteNBT readNBT(InputStream stream)
      +
      Reads in an NBT stream and returns a ReadWriteNBT object
      +
      +
      Parameters:
      +
      stream - The NBT stream to read.
      +
      Returns:
      +
      A new ReadWriteNBT object.
      +
      +
    • +
    + + + +
      +
    • +

      wrapNMSTag

      +
      public static ReadWriteNBT wrapNMSTag(Object nmsNbtTag)
      +
      Helper method for other developers using NMS. Allows to wrap any + net.minecraft.nbt.CompoundTag to a NBTAPI ReadWriteNBT object.
      +
      +
      Parameters:
      +
      nmsNbtTag - Needs to be a valid net.minecraft.nbt.CompoundTag
      +
      Returns:
      +
      A new ReadWriteNBT object.
      +
      +
    • +
    + + + +
      +
    • +

      getFileHandle

      +
      public static NBTFileHandle getFileHandle(File file)
      +                                   throws IOException
      +
      Creates a NBTFileHandle that uses @param file to store its data. If this file + exists, the data will be loaded, otherwise a new file gets created.
      +
      +
      Parameters:
      +
      file -
      +
      Throws:
      +
      IOException
      +
      +
    • +
    + + + +
      +
    • +

      readFile

      +
      public static ReadWriteNBT readFile(File file)
      +                             throws IOException
      +
      Reads NBT data from the provided file. +

      + Returns an empty tag if the file does not exist.

      +
      +
      Parameters:
      +
      file - file to read
      +
      Returns:
      +
      ReadWriteNBT of the files data
      +
      Throws:
      +
      IOException - exception
      +
      +
    • +
    + + + +
      +
    • +

      writeFile

      +
      public static void writeFile(File file,
      +                             ReadWriteNBT nbt)
      +                      throws IOException
      +
      Saves NBT data to the provided file. +

      + Will fully override the file if it already exists.

      +
      +
      Parameters:
      +
      file - file
      +
      nbt - NBT data
      +
      Throws:
      +
      IOException - exception
    diff --git a/v2-api/de/tr7zw/changeme/nbtapi/NBTBlock.html b/v2-api/de/tr7zw/changeme/nbtapi/NBTBlock.html index b0644f764..5ae05a748 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/NBTBlock.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/NBTBlock.html @@ -2,10 +2,10 @@ - + NBTBlock (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/NBTChunk.html b/v2-api/de/tr7zw/changeme/nbtapi/NBTChunk.html index addc2f97e..815790a85 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/NBTChunk.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/NBTChunk.html @@ -2,10 +2,10 @@ - + NBTChunk (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/NBTCompound.html b/v2-api/de/tr7zw/changeme/nbtapi/NBTCompound.html index 4d68ef692..afb859773 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/NBTCompound.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/NBTCompound.html @@ -2,10 +2,10 @@ - + NBTCompound (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/NBTCompoundList.html b/v2-api/de/tr7zw/changeme/nbtapi/NBTCompoundList.html index 28a64da7b..1e0a99910 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/NBTCompoundList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/NBTCompoundList.html @@ -2,10 +2,10 @@ - + NBTCompoundList (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -210,8 +210,10 @@

    Method Summary

    -NBTCompound -addCompound(ReadWriteNBT comp)  +ReadWriteNBT +addCompound(ReadableNBT comp) +
    Adds a copy of the Compound to the end of the List and returns it.
    + protected Object @@ -347,13 +349,21 @@

    addCompound

    - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/NBTContainer.html b/v2-api/de/tr7zw/changeme/nbtapi/NBTContainer.html index e85d07f35..228b02204 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/NBTContainer.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/NBTContainer.html @@ -2,10 +2,10 @@ - + NBTContainer (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -146,22 +146,28 @@

    Constructor Summary

    NBTContainer() -
    Creates an empty, standalone NBTCompound
    +
    Deprecated. 
    NBTContainer(InputStream inputsteam) -
    Reads in a NBT InputStream
    +
    Deprecated.  +
    Use NBT.readNBT
    +
    NBTContainer(Object nbt) -
    Takes in any NMS Compound to wrap it
    +
    Deprecated.  +
    Use NBT.wrapNMSTag
    +
    NBTContainer(String nbtString) -
    Parses in a NBT String to a standalone NBTCompound.
    +
    Deprecated.  +
    Use NBT.parseNBT
    +
    @@ -245,7 +251,9 @@

    Constructor Detail

    • NBTContainer

      -
      public NBTContainer()
      +
      @Deprecated
      +public NBTContainer()
      +
      Deprecated. 
      Creates an empty, standalone NBTCompound
    @@ -255,7 +263,9 @@

    NBTContainer

    + + + +
      +
    • +

      addCompound

      +
      ReadWriteNBT addCompound(ReadableNBT comp)
      +
      Adds a copy of the Compound to the end of the List and returns it. When null + is given, a new Compound will be created
      +
      +
      Parameters:
      +
      comp -
      +
      Returns:
      +
      +
    • +
    diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadWriteNBTList.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadWriteNBTList.html index 6e6b64fd4..6d6e99d40 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadWriteNBTList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadWriteNBTList.html @@ -2,10 +2,10 @@ - + ReadWriteNBTList (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableItemNBT.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableItemNBT.html index f2e71dcbf..289f4e60b 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableItemNBT.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableItemNBT.html @@ -2,10 +2,10 @@ - + ReadableItemNBT (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBT.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBT.html index 9b1f137be..7f5513996 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBT.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBT.html @@ -2,10 +2,10 @@ - + ReadableNBT (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -102,7 +102,7 @@

    Interface ReadableNBT

  • All Known Subinterfaces:
    -
    ReadableItemNBT, ReadWriteItemNBT, ReadWriteNBT
    +
    NBTFileHandle, ReadableItemNBT, ReadWriteItemNBT, ReadWriteNBT
    All Known Implementing Classes:
    diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBTList.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBTList.html index 0533bcd76..c587cabc2 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBTList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/ReadableNBTList.html @@ -2,10 +2,10 @@ - + ReadableNBTList (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/NBTFileHandle.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/NBTFileHandle.html new file mode 100644 index 000000000..35a7917f1 --- /dev/null +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/NBTFileHandle.html @@ -0,0 +1,183 @@ + + + + + + +Uses of Interface de.tr7zw.changeme.nbtapi.iface.NBTFileHandle (item-nbt-api 2.13.3-SNAPSHOT API) + + + + + + + + + + + +
    +

    Uses of Interface
    de.tr7zw.changeme.nbtapi.iface.NBTFileHandle

    +
    +
    + +
    + + + + +

    Copyright © 2015–2024 tr7zw. All rights reserved.

    + + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/NBTHandler.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/NBTHandler.html index 64c1c5d57..422e3dbbc 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/NBTHandler.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/NBTHandler.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.NBTHandler (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteItemNBT.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteItemNBT.html index 1f0fb00f5..4cb8ccbc4 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteItemNBT.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteItemNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.ReadWriteItemNBT (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBT.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBT.html index fe753c89c..c4fa6b9ee 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBT.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.ReadWriteNBT (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -177,43 +177,65 @@

    Uses of +ReadWriteNBT +NBTCompoundList.addCompound(ReadableNBT comp)  + + static ReadWriteNBT NBT.createNBTObject()
    Create a new NBTContainer object and return it.
    - + static ReadWriteNBT NBT.gameProfileToNBT(com.mojang.authlib.GameProfile profile)
    It converts a GameProfile object to a ReadWriteNBT object
    - + static ReadWriteNBT NBT.itemStackArrayToNBT(org.bukkit.inventory.ItemStack[] itemStacks)
    It converts an array of ItemStacks into a ReadWriteNBT object
    - + static ReadWriteNBT NBT.itemStackToNBT(org.bukkit.inventory.ItemStack itemStack)
    It converts an ItemStack to a ReadWriteNBT object
    - + static ReadWriteNBT NBT.parseNBT(String nbtString)
    It takes a nbt json string, and returns a ReadWriteNBT object
    + +static ReadWriteNBT +NBT.readFile(File file) +
    Reads NBT data from the provided file.
    + + +static ReadWriteNBT +NBT.readNBT(InputStream stream) +
    Reads in an NBT stream and returns a ReadWriteNBT object
    + + + ReadWriteNBT NBTCompound.resolveCompound(String key)  - + ReadWriteNBT NBTCompound.resolveOrCreateCompound(String key)  + +static ReadWriteNBT +NBT.wrapNMSTag(Object nmsNbtTag) +
    Helper method for other developers using NMS.
    + + @@ -237,18 +259,21 @@

    Uses of -

    - - - - + + + + +
    NBTCompoundNBTCompoundList.addCompound(ReadWriteNBT comp) 
    protected Object NBTCompoundList.asTag(ReadWriteNBT object) 
    NBTListCompound NBTCompoundList.set(int index, ReadWriteNBT element) 
    static voidNBT.writeFile(File file, + ReadWriteNBT nbt) +
    Saves NBT data to the provided file.
    +
    @@ -373,6 +398,10 @@

    Uses of

    + + + + @@ -392,25 +421,31 @@

    Uses of

    - + + + + + - + - + - + + + + - + - + - + @@ -249,12 +253,28 @@

    Uses of +

    + + + + + + + @@ -313,14 +333,18 @@

    Uses of

    - + - + + + + + @@ -352,11 +376,17 @@

    Uses of +

    + + + - + - + - + + + + + - + - + - + - + - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-tree.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-tree.html index ca91c11ab..bd68dfcb9 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-tree.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.iface Class Hierarchy (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -100,6 +100,7 @@

    Interface Hierarchy

  • de.tr7zw.changeme.nbtapi.iface.ReadWriteNBT
  • diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-use.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-use.html index 80f02a679..bb4e25337 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-use.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-use.html @@ -2,10 +2,10 @@ - +Uses of Package de.tr7zw.changeme.nbtapi.iface (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -116,30 +116,33 @@

    Uses of

    - + - + + + + - + - + - + - + - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/package-frame.html b/v2-api/de/tr7zw/changeme/nbtapi/package-frame.html index 1981b1be9..eff5b08bc 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/package-frame.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/package-frame.html @@ -2,10 +2,10 @@ - +de.tr7zw.changeme.nbtapi (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/package-summary.html b/v2-api/de/tr7zw/changeme/nbtapi/package-summary.html index 8969fb05d..42239e712 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/package-summary.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/package-summary.html @@ -2,10 +2,10 @@ - +de.tr7zw.changeme.nbtapi (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/package-tree.html b/v2-api/de/tr7zw/changeme/nbtapi/package-tree.html index c09ac0b93..3c53d22a0 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/package-tree.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/package-tree.html @@ -2,10 +2,10 @@ - +de.tr7zw.changeme.nbtapi Class Hierarchy (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -89,7 +89,7 @@

    Class Hierarchy

    • de.tr7zw.changeme.nbtapi.NBTContainer
    • de.tr7zw.changeme.nbtapi.NBTEntity
    • -
    • de.tr7zw.changeme.nbtapi.NBTFile
    • +
    • de.tr7zw.changeme.nbtapi.NBTFile (implements de.tr7zw.changeme.nbtapi.iface.NBTFileHandle)
    • de.tr7zw.changeme.nbtapi.NBTItem (implements de.tr7zw.changeme.nbtapi.iface.ReadWriteItemNBT)
    • de.tr7zw.changeme.nbtapi.NBTListCompound
    • de.tr7zw.changeme.nbtapi.NBTPersistentDataContainer
    • diff --git a/v2-api/de/tr7zw/changeme/nbtapi/package-use.html b/v2-api/de/tr7zw/changeme/nbtapi/package-use.html index 68e583534..f43a91e57 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/package-use.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.changeme.nbtapi (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/CheckUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/CheckUtil.html index 9b7310b14..484db02e3 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/CheckUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/CheckUtil.html @@ -2,10 +2,10 @@ - + CheckUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/DataFixerUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/DataFixerUtil.html index a13fb6402..f4dd12cc1 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/DataFixerUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/DataFixerUtil.html @@ -2,10 +2,10 @@ - + DataFixerUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -174,6 +174,10 @@

      Field Summary

    + + + +
    interface NBTFileHandle 
    interface  ReadWriteItemNBT 
    ReadWriteNBTReadWriteNBT.getCompound(String name) ReadWriteNBTCompoundList.addCompound(ReadableNBT comp) +
    Adds a copy of the Compound to the end of the List and returns it.
    +
    ReadWriteNBTReadWriteNBT.getCompound(String name) 
    ReadWriteNBT ReadWriteNBT.getOrCreateCompound(String name)
    The same as addCompound, just with a name that better reflects what it does
    ReadWriteNBT ReadWriteNBTCompoundList.remove(int i)
    Removes the element at the specified position in this list
    ReadWriteNBT ReadWriteNBT.resolveCompound(String key) 
    ReadWriteNBT ReadWriteNBT.resolveOrCreateCompound(String key)
    Returns the resolved and creates compounds as required.
    diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html index 61fd98ac2..e1d2895f1 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.ReadWriteNBTCompoundList (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTList.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTList.html index ce6e58fbd..a0807be53 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadWriteNBTList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.ReadWriteNBTList (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableItemNBT.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableItemNBT.html index e52481394..194540f5b 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableItemNBT.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableItemNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.ReadableItemNBT (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBT.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBT.html index 8a281f0fc..999d5f13c 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBT.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.ReadableNBT (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -188,24 +188,28 @@

    Uses of +

    ReadWriteNBTNBTCompoundList.addCompound(ReadableNBT comp) 
    static com.mojang.authlib.GameProfile NBT.gameProfileFromNBT(ReadableNBT compound)
    It takes a NBT compound and returns a GameProfile
    static org.bukkit.inventory.ItemStack[] NBT.itemStackArrayFromNBT(ReadableNBT compound)
    It converts a ReadableNBT object into an array of ItemStacks
    static org.bukkit.inventory.ItemStack NBT.itemStackFromNBT(ReadableNBT compound)
    It converts a ReadableNBT object into an ItemStack
    void NBTCompound.mergeCompound(ReadableNBT comp) 
    static voidNBT.getComponents(org.bukkit.inventory.ItemStack item, + Consumer<ReadableNBT> consumer) +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    +
    static <T> TNBT.getComponents(org.bukkit.inventory.ItemStack item, + Function<ReadableNBT,T> function) +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    +
    static <T> T NBT.getPersistentData(org.bukkit.block.BlockState blockState, Function<ReadableNBT,T> getter) -
    It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
    +
    It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
    interface ReadableItemNBT NBTFileHandle 
    interface ReadWriteItemNBT ReadableItemNBT 
    interface ReadWriteItemNBT 
    interface  ReadWriteNBT 
    ReadWriteNBTReadWriteNBTCompoundList.addCompound(ReadableNBT comp) +
    Adds a copy of the Compound to the end of the List and returns it.
    +
    T NBTHandler.get(ReadableNBT nbt, String key) 
    void ReadWriteNBT.mergeCompound(ReadableNBT comp)
    Merges all data from comp into this compound.
    diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBTList.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBTList.html index ab79386ad..3d9467996 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBTList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/class-use/ReadableNBTList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.iface.ReadableNBTList (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-frame.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-frame.html index f09125cf7..22c668285 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-frame.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.iface (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -14,6 +14,7 @@

    Interfaces

      +
    • NBTFileHandle
    • NBTHandler
    • ReadableItemNBT
    • ReadableNBT
    • diff --git a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-summary.html b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-summary.html index 3012dbd7f..0900495f0 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/iface/package-summary.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/iface/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.iface (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -84,37 +84,41 @@

      Package de.tr7zw.changeme.nbtapi.iface

    NBTHandler<T>NBTFileHandle  
    ReadableItemNBTNBTHandler<T>  
    ReadableItemNBT 
    ReadableNBT
    This interface only exposes methods that get data without any changes to the underlying object.
    ReadableNBTList<T>  
    ReadWriteItemNBT  
    ReadWriteNBT  
    ReadWriteNBTCompoundList  
    ReadWriteNBTList<T>  
    NBTHandler NBTFileHandle 
    ReadableItemNBT NBTHandler 
    ReadableItemNBT 
    ReadableNBT
    This interface only exposes methods that get data without any changes to the underlying object.
    ReadableNBTList 
    ReadWriteItemNBT 
    ReadWriteNBT 
    ReadWriteNBTCompoundList 
    ReadWriteNBTList 
    static int VERSION1_21 
    static intVERSION1_21_2 

  • @@ -380,7 +384,7 @@

    VERSION1_20_5

    -
      +
      • VERSION1_21

        public static final int VERSION1_21
        @@ -390,6 +394,19 @@

        VERSION1_21

      + + + +
    diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/GameprofileUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/GameprofileUtil.html index 1648ba57a..909bb7b58 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/GameprofileUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/GameprofileUtil.html @@ -2,10 +2,10 @@ - + GameprofileUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/GsonWrapper.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/GsonWrapper.html index b62ce851c..f8d5924cd 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/GsonWrapper.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/GsonWrapper.html @@ -2,10 +2,10 @@ - + GsonWrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedBarChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedBarChart.html index 1e76cd127..30d5ccb42 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedBarChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedBarChart.html @@ -2,10 +2,10 @@ - + Metrics.AdvancedBarChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedPie.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedPie.html index 577a4daf0..da251f60f 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedPie.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.AdvancedPie.html @@ -2,10 +2,10 @@ - + Metrics.AdvancedPie (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.CustomChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.CustomChart.html index df96e9ddb..f3f330a78 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.CustomChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.CustomChart.html @@ -2,10 +2,10 @@ - + Metrics.CustomChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.DrilldownPie.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.DrilldownPie.html index 10571e12e..393080c1d 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.DrilldownPie.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.DrilldownPie.html @@ -2,10 +2,10 @@ - + Metrics.DrilldownPie (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html index 8139287e7..eb44f5a96 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html @@ -2,10 +2,10 @@ - + Metrics.JsonObjectBuilder.JsonObject (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.html index 0a5d31e32..b571f3543 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.JsonObjectBuilder.html @@ -2,10 +2,10 @@ - + Metrics.JsonObjectBuilder (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MetricsBase.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MetricsBase.html index 76888cfb2..04bf30c90 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MetricsBase.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MetricsBase.html @@ -2,10 +2,10 @@ - + Metrics.MetricsBase (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MultiLineChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MultiLineChart.html index fa5cf7344..34ff2b8dc 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MultiLineChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.MultiLineChart.html @@ -2,10 +2,10 @@ - + Metrics.MultiLineChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimpleBarChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimpleBarChart.html index 347cdbce9..d79de5cf4 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimpleBarChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimpleBarChart.html @@ -2,10 +2,10 @@ - + Metrics.SimpleBarChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimplePie.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimplePie.html index 12f906a33..ec49c17b2 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimplePie.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SimplePie.html @@ -2,10 +2,10 @@ - + Metrics.SimplePie (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SingleLineChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SingleLineChart.html index 4ea9f0474..c35b5c222 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SingleLineChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.SingleLineChart.html @@ -2,10 +2,10 @@ - + Metrics.SingleLineChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.html index f0dc6742c..112829656 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/Metrics.html @@ -2,10 +2,10 @@ - + Metrics (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/MinecraftVersion.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/MinecraftVersion.html index 6bdee1fb2..8223652ab 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/MinecraftVersion.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/MinecraftVersion.html @@ -2,10 +2,10 @@ - + MinecraftVersion (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -209,18 +209,21 @@

    Enum Constant Summary

    MC1_21_R1  -MC1_7_R4  +MC1_21_R2  -MC1_8_R3  +MC1_7_R4  -MC1_9_R1  +MC1_8_R3  -MC1_9_R2  +MC1_9_R1  +MC1_9_R2  + + UNKNOWN  @@ -612,12 +615,21 @@

    MC1_20_R4

    - diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.PathSegment.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.PathSegment.html index 169bac336..def5bead6 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.PathSegment.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.PathSegment.html @@ -2,10 +2,10 @@ - + PathUtil.PathSegment (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.html index 908188901..fb1699572 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/PathUtil.html @@ -2,10 +2,10 @@ - + PathUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/ReflectionUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/ReflectionUtil.html index 4e610b540..27fb33969 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/ReflectionUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/ReflectionUtil.html @@ -2,10 +2,10 @@ - + ReflectionUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/UUIDUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/UUIDUtil.html index 24699f3b7..3ce923e43 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/UUIDUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/UUIDUtil.html @@ -2,10 +2,10 @@ - + UUIDUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/VersionChecker.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/VersionChecker.html index 7cc76c29e..05d4fff1e 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/VersionChecker.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/VersionChecker.html @@ -2,10 +2,10 @@ - + VersionChecker (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/CheckUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/CheckUtil.html index 42be666e0..6faa36ebc 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/CheckUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/CheckUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.CheckUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/DataFixerUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/DataFixerUtil.html index 7f0146e81..d7c2fb60b 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/DataFixerUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/DataFixerUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.DataFixerUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GameprofileUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GameprofileUtil.html index 65f6688e6..4aab7758b 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GameprofileUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GameprofileUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.GameprofileUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GsonWrapper.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GsonWrapper.html index 05ac37c78..ac7fe53a8 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GsonWrapper.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/GsonWrapper.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.GsonWrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html index affd11c74..832c9bbb2 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.AdvancedBarChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedPie.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedPie.html index 823730fee..1944a1ceb 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedPie.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.AdvancedPie.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.AdvancedPie (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.CustomChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.CustomChart.html index bce972a81..9b4ef1bf7 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.CustomChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.CustomChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.CustomChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.DrilldownPie.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.DrilldownPie.html index d3a91389d..399131283 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.DrilldownPie.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.DrilldownPie.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.DrilldownPie (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html index d145a54c6..1ee2674b4 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.JsonObjectBuilder.JsonObject (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html index 3764f375d..3b2cba3ff 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.JsonObjectBuilder (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MetricsBase.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MetricsBase.html index e13a37733..6948addc7 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MetricsBase.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MetricsBase.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.MetricsBase (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MultiLineChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MultiLineChart.html index 477bd87a4..2b68a9cb1 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MultiLineChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.MultiLineChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.MultiLineChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimpleBarChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimpleBarChart.html index 869addd37..6bb98b7f2 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimpleBarChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimpleBarChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.SimpleBarChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimplePie.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimplePie.html index 30118e6bd..70aee2254 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimplePie.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SimplePie.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.SimplePie (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SingleLineChart.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SingleLineChart.html index 8f1cbf5cf..91ab053fa 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SingleLineChart.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.SingleLineChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics.SingleLineChart (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.html index 1267beb6f..2db754c8b 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/Metrics.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.Metrics (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/MinecraftVersion.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/MinecraftVersion.html index 44a58a400..44922ffeb 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/MinecraftVersion.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/MinecraftVersion.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.MinecraftVersion (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.PathSegment.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.PathSegment.html index 46f8c1bd6..f951888b4 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.PathSegment.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.PathSegment.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.PathUtil.PathSegment (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.html index 5ae5f319b..a32c5ed20 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/PathUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.PathUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/ReflectionUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/ReflectionUtil.html index 95928a68a..d2bd7379e 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/ReflectionUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/ReflectionUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.ReflectionUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/UUIDUtil.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/UUIDUtil.html index cc2babebf..b032b1912 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/UUIDUtil.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/UUIDUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.UUIDUtil (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/VersionChecker.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/VersionChecker.html index e3414a266..31d379606 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/VersionChecker.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/class-use/VersionChecker.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.VersionChecker (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ClassWrapper.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ClassWrapper.html index aa439f9a3..32324a4f2 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ClassWrapper.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ClassWrapper.html @@ -2,10 +2,10 @@ - + ClassWrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/Forge1710Mappings.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/Forge1710Mappings.html index 8b9ba02b7..eda9b121e 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/Forge1710Mappings.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/Forge1710Mappings.html @@ -2,10 +2,10 @@ - + Forge1710Mappings (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/MojangToMapping.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/MojangToMapping.html index 94965cce6..759df6c2d 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/MojangToMapping.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/MojangToMapping.html @@ -2,10 +2,10 @@ - + MojangToMapping (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ObjectCreator.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ObjectCreator.html index 3f5805e44..8beaaacc7 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ObjectCreator.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ObjectCreator.html @@ -2,10 +2,10 @@ - + ObjectCreator (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/PackageWrapper.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/PackageWrapper.html index 8522817a5..5a6cd2e73 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/PackageWrapper.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/PackageWrapper.html @@ -2,10 +2,10 @@ - + PackageWrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html index 4dcadf6a5..88237ca5b 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html @@ -2,10 +2,10 @@ - + ReflectionMethod.Since (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.html index d81e43bc1..60b69c401 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/ReflectionMethod.html @@ -2,10 +2,10 @@ - + ReflectionMethod (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html index 50dd7d0ca..82e2b143c 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.nmsmappings.ClassWrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html index a2cddc056..0185859c9 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.nmsmappings.Forge1710Mappings (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html index cab5c7b73..adc55ce71 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.nmsmappings.MojangToMapping (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html index a02bc15d8..37863bf27 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.nmsmappings.ObjectCreator (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html index f2510b971..feb7a828d 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.nmsmappings.PackageWrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html index cef844fb0..f99c79723 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.nmsmappings.ReflectionMethod.Since (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html index 41869eb05..e2c6b87e0 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.utils.nmsmappings.ReflectionMethod (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-frame.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-frame.html index 2158e68a2..ba9ca1e0c 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-frame.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.utils.nmsmappings (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-summary.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-summary.html index 06139c0fb..64a18c993 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-summary.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.utils.nmsmappings (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-tree.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-tree.html index 3896b80cf..4ebc30fc7 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-tree.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.utils.nmsmappings Class Hierarchy (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -94,9 +94,9 @@

    Enum Hierarchy

    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
    • diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-use.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-use.html index 3ea7d8648..2836e7955 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-use.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/nmsmappings/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.changeme.nbtapi.utils.nmsmappings (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-frame.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-frame.html index efd08d046..1d1056a92 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-frame.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.utils (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-summary.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-summary.html index 73392972c..574cbc80a 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-summary.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.utils (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-tree.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-tree.html index 4b20b4f04..8344c5cf1 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-tree.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.utils Class Hierarchy (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-use.html b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-use.html index 5721b1b75..b220e3b31 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/utils/package-use.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/utils/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.changeme.nbtapi.utils (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/Casing.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/Casing.html index ab44a0896..e106797f2 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/Casing.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/Casing.html @@ -2,10 +2,10 @@ - + Casing (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTProxy.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTProxy.html index ec7945dcf..be0714d02 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTProxy.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTProxy.html @@ -2,10 +2,10 @@ - + NBTProxy (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.Type.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.Type.html index 268758822..7084718bc 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.Type.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.Type.html @@ -2,10 +2,10 @@ - + NBTTarget.Type (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.html index 7d0dfd9e2..2fd6e417f 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/NBTTarget.html @@ -2,10 +2,10 @@ - + NBTTarget (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyBuilder.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyBuilder.html index 70d9a391e..b17e60bbc 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyBuilder.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyBuilder.html @@ -2,10 +2,10 @@ - + ProxyBuilder (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyList.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyList.html index 999de7f57..e6347f420 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/ProxyList.html @@ -2,10 +2,10 @@ - + ProxyList (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/Casing.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/Casing.html index b3fd1b6ac..66342273d 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/Casing.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/Casing.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.wrapper.Casing (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTProxy.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTProxy.html index a61fa60b0..20bf5aed3 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTProxy.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTProxy.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.wrapper.NBTProxy (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.Type.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.Type.html index e5391bee1..c5d2ae0a2 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.Type.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.Type.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.wrapper.NBTTarget.Type (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.html index b4a52a640..20f5c83da 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/NBTTarget.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.wrapper.NBTTarget (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyBuilder.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyBuilder.html index cf70935ae..10f8087f6 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyBuilder.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyBuilder.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.changeme.nbtapi.wrapper.ProxyBuilder (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyList.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyList.html index c10d13ff0..70ae5bb66 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyList.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/class-use/ProxyList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.changeme.nbtapi.wrapper.ProxyList (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-frame.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-frame.html index 47582979a..265377256 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-frame.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.wrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-summary.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-summary.html index 268e97842..ee2ce15cf 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-summary.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.wrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-tree.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-tree.html index b32957a82..4d40cfcd9 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-tree.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.changeme.nbtapi.wrapper Class Hierarchy (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-use.html b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-use.html index 569507a38..8e713cd75 100644 --- a/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-use.html +++ b/v2-api/de/tr7zw/changeme/nbtapi/wrapper/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.changeme.nbtapi.wrapper (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/deprecated-list.html b/v2-api/deprecated-list.html index b7adfc163..eb52453a6 100644 --- a/v2-api/deprecated-list.html +++ b/v2-api/deprecated-list.html @@ -2,10 +2,10 @@ - + Deprecated List (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -160,6 +160,16 @@

      Contents

      de.tr7zw.changeme.nbtapi.NBTItem.mergeNBT(ItemStack) +de.tr7zw.changeme.nbtapi.NBTFile.readFrom(File) +
      Use NBT.readFile(file)
      + + + +de.tr7zw.changeme.nbtapi.NBTFile.saveTo(File, NBTCompound) +
      Use NBT.writeFile(file, nbt)
      + + + de.tr7zw.changeme.nbtapi.NBTCompound.setObject(String, Object) @@ -186,15 +196,38 @@

      Contents

      +de.tr7zw.changeme.nbtapi.NBTContainer() + + +de.tr7zw.changeme.nbtapi.NBTContainer(InputStream) +
      Use NBT.readNBT
      + + + +de.tr7zw.changeme.nbtapi.NBTContainer(Object) +
      Use NBT.wrapNMSTag
      + + + +de.tr7zw.changeme.nbtapi.NBTContainer(String) +
      Use NBT.parseNBT
      + + + de.tr7zw.changeme.nbtapi.NBTEntity(Entity) -de.tr7zw.changeme.nbtapi.NBTItem(ItemStack) +de.tr7zw.changeme.nbtapi.NBTFile(File) +
      Use NBT.getFileHandle(file)
      + -de.tr7zw.changeme.nbtapi.NBTItem(ItemStack, boolean) +de.tr7zw.changeme.nbtapi.NBTItem(ItemStack) +de.tr7zw.changeme.nbtapi.NBTItem(ItemStack, boolean) + + de.tr7zw.changeme.nbtapi.NBTTileEntity(BlockState) diff --git a/v2-api/help-doc.html b/v2-api/help-doc.html index 12109e78b..5acd22e07 100644 --- a/v2-api/help-doc.html +++ b/v2-api/help-doc.html @@ -2,10 +2,10 @@ - + API Help (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/index-all.html b/v2-api/index-all.html index 92c58bf54..1c0fc21b0 100644 --- a/v2-api/index-all.html +++ b/v2-api/index-all.html @@ -2,10 +2,10 @@ - + Index (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -112,6 +112,10 @@

      A

      Adds a new compound tag to the current compound tag
      +
      addCompound(ReadableNBT) - Method in interface de.tr7zw.changeme.nbtapi.iface.ReadWriteNBTCompoundList
      +
      +
      Adds a copy of the Compound to the end of the List and returns it.
      +
      addCompound(String) - Method in class de.tr7zw.changeme.nbtapi.NBTCompound
      Creates a subCompound, or returns it if already provided
      @@ -124,7 +128,7 @@

      A

      Adds a copy of the Compound to the end of the List and returns it.
      -
      addCompound(ReadWriteNBT) - Method in class de.tr7zw.changeme.nbtapi.NBTCompoundList
      +
      addCompound(ReadableNBT) - Method in class de.tr7zw.changeme.nbtapi.NBTCompoundList
       
      addCompound() - Method in interface de.tr7zw.changeme.nbtapi.wrapper.ProxyList
      @@ -517,6 +521,16 @@

      G

       
      getClazz() - Method in enum de.tr7zw.changeme.nbtapi.utils.nmsmappings.ClassWrapper
       
      +
      getComponents(ItemStack, Consumer<ReadableNBT>) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      +
      +
      It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
      +
      +
      getComponents(ItemStack, Function<ReadableNBT, T>) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      +
      +
      It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
      +
      getCompound(String) - Method in interface de.tr7zw.changeme.nbtapi.iface.ReadableNBT
       
      getCompound(String) - Method in interface de.tr7zw.changeme.nbtapi.iface.ReadWriteNBT
      @@ -591,8 +605,14 @@

      G

      Get an Enum value that has been set via setEnum or setString(key, value.name()).
      +
      getFile() - Method in interface de.tr7zw.changeme.nbtapi.iface.NBTFileHandle
      +
       
      getFile() - Method in class de.tr7zw.changeme.nbtapi.NBTFile
       
      +
      getFileHandle(File) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      +
      +
      Creates a NBTFileHandle that uses @param file to store its data.
      +
      getFloat(String) - Method in interface de.tr7zw.changeme.nbtapi.iface.ReadableNBT
      Returns the value of the given key as a Float, or 0 if the key does not @@ -798,9 +818,9 @@

      G

      getPersistentData(BlockState, Function<ReadableNBT, T>) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      -
      It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
      +
      It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
      getPersistentDataContainer() - Method in class de.tr7zw.changeme.nbtapi.NBTChunk
      @@ -1315,19 +1335,25 @@

      N

      NBTContainer() - Constructor for class de.tr7zw.changeme.nbtapi.NBTContainer
      -
      Creates an empty, standalone NBTCompound
      +
      Deprecated.
      NBTContainer(Object) - Constructor for class de.tr7zw.changeme.nbtapi.NBTContainer
      -
      Takes in any NMS Compound to wrap it
      +
      Deprecated. +
      Use NBT.wrapNMSTag
      +
      NBTContainer(InputStream) - Constructor for class de.tr7zw.changeme.nbtapi.NBTContainer
      -
      Reads in a NBT InputStream
      +
      Deprecated. +
      Use NBT.readNBT
      +
      NBTContainer(String) - Constructor for class de.tr7zw.changeme.nbtapi.NBTContainer
      -
      Parses in a NBT String to a standalone NBTCompound.
      +
      Deprecated. +
      Use NBT.parseNBT
      +
      NBTDoubleList - Class in de.tr7zw.changeme.nbtapi
      @@ -1351,8 +1377,12 @@

      N

      NBTFile(File) - Constructor for class de.tr7zw.changeme.nbtapi.NBTFile
      -
      Creates a NBTFile that uses @param file to store its data.
      +
      Deprecated. +
      Use NBT.getFileHandle(file)
      +
      +
      NBTFileHandle - Interface in de.tr7zw.changeme.nbtapi.iface
      +
       
      NBTFloatList - Class in de.tr7zw.changeme.nbtapi
      Float implementation for NBTLists
      @@ -1516,16 +1546,26 @@

      R

      ReadableNBTList<T> - Interface in de.tr7zw.changeme.nbtapi.iface
       
      -
      readFrom(File) - Static method in class de.tr7zw.changeme.nbtapi.NBTFile
      +
      readFile(File) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      Reads NBT data from the provided file.
      +
      readFrom(File) - Static method in class de.tr7zw.changeme.nbtapi.NBTFile
      +
      +
      Deprecated. +
      Use NBT.readFile(file)
      +
      +
      readGameProfile(ReadableNBT) - Static method in class de.tr7zw.changeme.nbtapi.utils.GameprofileUtil
       
      readNbt(ItemStack) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      Get a read only instance of the items NBT.
      +
      readNBT(InputStream) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      +
      +
      Reads in an NBT stream and returns a ReadWriteNBT object
      +
      readNbt(ItemStack, Class<T>) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      Create a read only proxy class for NBT, given an annotated interface.
      @@ -1658,6 +1698,10 @@

      R

      S

      +
      save() - Method in interface de.tr7zw.changeme.nbtapi.iface.NBTFileHandle
      +
      +
      Saves the data to the file
      +
      save() - Method in class de.tr7zw.changeme.nbtapi.NBTFile
      Saves the data to the file
      @@ -1672,7 +1716,9 @@

      S

       
      saveTo(File, NBTCompound) - Static method in class de.tr7zw.changeme.nbtapi.NBTFile
      -
      Saves NBT data to the provided file.
      +
      Deprecated. +
      Use NBT.writeFile(file, nbt)
      +
      set(ReadWriteNBT, String, T) - Method in interface de.tr7zw.changeme.nbtapi.iface.NBTHandler
       
      @@ -2092,6 +2138,8 @@

      V

       
      VERSION1_21 - Static variable in class de.tr7zw.changeme.nbtapi.utils.DataFixerUtil
       
      +
      VERSION1_21_2 - Static variable in class de.tr7zw.changeme.nbtapi.utils.DataFixerUtil
      +
       
      VersionChecker - Class in de.tr7zw.changeme.nbtapi.utils
      This class uses the Spiget API to check for updates
      @@ -2104,6 +2152,10 @@

      V

      W

      +
      wrapNMSTag(Object) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      +
      +
      Helper method for other developers using NMS.
      +
      writeApiNBT(NBTCompound, OutputStream) - Static method in class de.tr7zw.changeme.nbtapi.NBTReflectionUtil
      Writes a Compound to an OutputStream
      @@ -2114,6 +2166,10 @@

      W

      writeCompound(OutputStream) - Method in class de.tr7zw.changeme.nbtapi.NBTCompound
       
      +
      writeFile(File, ReadWriteNBT) - Static method in class de.tr7zw.changeme.nbtapi.NBT
      +
      +
      Saves NBT data to the provided file.
      +
      writeGameProfile(ReadWriteNBT, GameProfile) - Static method in class de.tr7zw.changeme.nbtapi.utils.GameprofileUtil
       
      writeNBT(Object, OutputStream) - Static method in class de.tr7zw.changeme.nbtapi.NBTReflectionUtil
      diff --git a/v2-api/index.html b/v2-api/index.html index 5c00d375c..73785281f 100644 --- a/v2-api/index.html +++ b/v2-api/index.html @@ -2,7 +2,7 @@ - + item-nbt-api 2.13.3-SNAPSHOT API diff --git a/v2-api/overview-summary.html b/v2-api/overview-summary.html index b2cd5eb9b..bc52b1076 100644 --- a/v2-api/overview-summary.html +++ b/v2-api/overview-summary.html @@ -2,10 +2,10 @@ - + Overview (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-api/overview-tree.html b/v2-api/overview-tree.html index 2bef306c7..6551f90a4 100644 --- a/v2-api/overview-tree.html +++ b/v2-api/overview-tree.html @@ -2,10 +2,10 @@ - + Class Hierarchy (item-nbt-api 2.13.3-SNAPSHOT API) - + @@ -115,7 +115,7 @@

      Class Hierarchy

      • de.tr7zw.changeme.nbtapi.NBTContainer
      • de.tr7zw.changeme.nbtapi.NBTEntity
      • -
      • de.tr7zw.changeme.nbtapi.NBTFile
      • +
      • de.tr7zw.changeme.nbtapi.NBTFile (implements de.tr7zw.changeme.nbtapi.iface.NBTFileHandle)
      • de.tr7zw.changeme.nbtapi.NBTItem (implements de.tr7zw.changeme.nbtapi.iface.ReadWriteItemNBT)
      • de.tr7zw.changeme.nbtapi.NBTListCompound
      • de.tr7zw.changeme.nbtapi.NBTPersistentDataContainer
      • @@ -179,6 +179,7 @@

        Interface Hierarchy

      • de.tr7zw.changeme.nbtapi.wrapper.NBTProxy
      • de.tr7zw.changeme.nbtapi.iface.ReadableNBT
          +
        • de.tr7zw.changeme.nbtapi.iface.NBTFileHandle
        • de.tr7zw.changeme.nbtapi.iface.ReadableItemNBT
        • diff --git a/v2-api/serialized-form.html b/v2-api/serialized-form.html index d45bccd14..4567d13c6 100644 --- a/v2-api/serialized-form.html +++ b/v2-api/serialized-form.html @@ -2,10 +2,10 @@ - + Serialized Form (item-nbt-api 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/allclasses-frame.html b/v2-plugin/allclasses-frame.html index ca8ea48a2..16a693082 100644 --- a/v2-plugin/allclasses-frame.html +++ b/v2-plugin/allclasses-frame.html @@ -2,10 +2,10 @@ - + All Classes (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -71,6 +71,7 @@

          All Classes

        • NBTDoubleList
        • NBTEntity
        • NBTFile
        • +
        • NBTFileHandle
        • NBTFileTest
        • NBTFloatList
        • NBTGameProfile
        • diff --git a/v2-plugin/allclasses-noframe.html b/v2-plugin/allclasses-noframe.html index 816a32b9e..ca2c9807b 100644 --- a/v2-plugin/allclasses-noframe.html +++ b/v2-plugin/allclasses-noframe.html @@ -2,10 +2,10 @@ - + All Classes (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -71,6 +71,7 @@

          All Classes

        • NBTDoubleList
        • NBTEntity
        • NBTFile
        • +
        • NBTFileHandle
        • NBTFileTest
        • NBTFloatList
        • NBTGameProfile
        • diff --git a/v2-plugin/constant-values.html b/v2-plugin/constant-values.html index 56c1e8f5e..ff877283f 100644 --- a/v2-plugin/constant-values.html +++ b/v2-plugin/constant-values.html @@ -2,10 +2,10 @@ - + Constant Field Values (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -168,6 +168,13 @@

          de.tr7zw.*

          VERSION1_21 3953 + + + +public static final int +VERSION1_21_2 +4080 + diff --git a/v2-plugin/de/tr7zw/nbtapi/NBT.html b/v2-plugin/de/tr7zw/nbtapi/NBT.html index 4d8d05667..f4bf88ada 100644 --- a/v2-plugin/de/tr7zw/nbtapi/NBT.html +++ b/v2-plugin/de/tr7zw/nbtapi/NBT.html @@ -2,10 +2,10 @@ - + NBT (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -19,7 +19,7 @@ catch(err) { } //--> -var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":9,"i19":9,"i20":9,"i21":9,"i22":9,"i23":9,"i24":9,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":9,"i32":9,"i33":9,"i34":9,"i35":9,"i36":9,"i37":9,"i38":9}; +var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":9,"i19":9,"i20":9,"i21":9,"i22":9,"i23":9,"i24":9,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":9,"i32":9,"i33":9,"i34":9,"i35":9,"i36":9,"i37":9,"i38":9,"i39":9,"i40":9,"i41":9,"i42":9,"i43":9,"i44":9,"i45":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; @@ -199,15 +199,37 @@

          Method Summary

          +static void +getComponents(org.bukkit.inventory.ItemStack item, + Consumer<ReadableNBT> consumer) +
          It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
          + + + +static <T> T +getComponents(org.bukkit.inventory.ItemStack item, + Function<ReadableNBT,T> function) +
          It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
          + + + +static NBTFileHandle +getFileHandle(File file) +
          Creates a NBTFileHandle that uses @param file to store its data.
          + + + static <T> T getPersistentData(org.bukkit.block.BlockState blockState, Function<ReadableNBT,T> getter) -
          It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
          +
          It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
          - + static <T> T getPersistentData(org.bukkit.entity.Entity entity, Function<ReadableNBT,T> getter) @@ -216,31 +238,31 @@

          Method Summary

          entities persistent data container - + static org.bukkit.inventory.ItemStack[] itemStackArrayFromNBT(ReadableNBT compound)
          It converts a ReadableNBT object into an array of ItemStacks
          - + static ReadWriteNBT itemStackArrayToNBT(org.bukkit.inventory.ItemStack[] itemStacks)
          It converts an array of ItemStacks into a ReadWriteNBT object
          - + static org.bukkit.inventory.ItemStack itemStackFromNBT(ReadableNBT compound)
          It converts a ReadableNBT object into an ItemStack
          - + static ReadWriteNBT itemStackToNBT(org.bukkit.inventory.ItemStack itemStack)
          It converts an ItemStack to a ReadWriteNBT object
          - + static <X extends NBTProxy>
          void
          modify(org.bukkit.block.BlockState blockState, Class<X> wrapper, @@ -248,7 +270,7 @@

          Method Summary

          It takes an block entity and a function to modify the entity via the proxy
          - + static <T,X extends NBTProxy>
          T
          modify(org.bukkit.block.BlockState blockState, Class<X> wrapper, @@ -256,7 +278,7 @@

          Method Summary

          It takes an block entity and a function to modify the entity via the proxy
          - + static void modify(org.bukkit.block.BlockState blockState, Consumer<ReadWriteNBT> consumer) @@ -265,7 +287,7 @@

          Method Summary

          NBTTileEntity object to the consumer - + static <T> T modify(org.bukkit.block.BlockState blockState, Function<ReadWriteNBT,T> function) @@ -273,7 +295,7 @@

          Method Summary

          generic type T. - + static <X extends NBTProxy>
          void
          modify(org.bukkit.entity.Entity entity, Class<X> wrapper, @@ -281,7 +303,7 @@

          Method Summary

          It takes an entity and a function to modify the entity via the proxy
          - + static <T,X extends NBTProxy>
          T
          modify(org.bukkit.entity.Entity entity, Class<X> wrapper, @@ -289,7 +311,7 @@

          Method Summary

          It takes an entity and a function to modify the entity via the proxy
          - + static void modify(org.bukkit.entity.Entity entity, Consumer<ReadWriteNBT> consumer) @@ -297,7 +319,7 @@

          Method Summary

          function to the entity - + static <T> T modify(org.bukkit.entity.Entity entity, Function<ReadWriteNBT,T> function) @@ -305,7 +327,7 @@

          Method Summary

          generic type T. - + static <X extends NBTProxy>
          void
          modify(org.bukkit.inventory.ItemStack item, Class<X> wrapper, @@ -313,7 +335,7 @@

          Method Summary

          It takes an ItemStack, applies a function to its NBT wrapped in a proxy.
          - + static <T,X extends NBTProxy>
          T
          modify(org.bukkit.inventory.ItemStack item, Class<X> wrapper, @@ -322,7 +344,7 @@

          Method Summary

          returns the result of the function - + static void modify(org.bukkit.inventory.ItemStack item, Consumer<ReadWriteItemNBT> consumer) @@ -330,7 +352,7 @@

          Method Summary

          the Consumer to the ItemStacks NBT - + static <T> T modify(org.bukkit.inventory.ItemStack item, Function<ReadWriteItemNBT,T> function) @@ -338,7 +360,7 @@

          Method Summary

          of the function - + static void modifyComponents(org.bukkit.inventory.ItemStack item, Consumer<ReadWriteNBT> consumer) @@ -346,7 +368,7 @@

          Method Summary

          the Consumer to the ItemStacks Components as NBT. - + static <T> T modifyComponents(org.bukkit.inventory.ItemStack item, Function<ReadWriteNBT,T> function) @@ -354,7 +376,7 @@

          Method Summary

          the Consumer to the ItemStacks Components as NBT. - + static void modifyPersistentData(org.bukkit.block.BlockState blockState, Consumer<ReadWriteNBT> consumer) @@ -362,7 +384,7 @@

          Method Summary

          the persistent data container of the block entity - + static <T> T modifyPersistentData(org.bukkit.block.BlockState blockState, Function<ReadWriteNBT,T> function) @@ -370,7 +392,7 @@

          Method Summary

          entities persistent data and returns a generic type T. - + static void modifyPersistentData(org.bukkit.entity.Entity entity, Consumer<ReadWriteNBT> consumer) @@ -378,7 +400,7 @@

          Method Summary

          value - + static <T> T modifyPersistentData(org.bukkit.entity.Entity entity, Function<ReadWriteNBT,T> function) @@ -386,46 +408,71 @@

          Method Summary

          persistent data and returns a generic type T. - + static ReadWriteNBT parseNBT(String nbtString)
          It takes a nbt json string, and returns a ReadWriteNBT object
          - + static boolean preloadApi()
          Utility method for shaded versions to preload and check the API during onEnable.
          - + +static ReadWriteNBT +readFile(File file) +
          Reads NBT data from the provided file.
          + + + static <T extends NBTProxy>
          T
          readNbt(org.bukkit.block.BlockState blockState, Class<T> wrapper)
          Create a read only proxy class for NBT, given an annotated interface.
          - + static <T extends NBTProxy>
          T
          readNbt(org.bukkit.entity.Entity entity, Class<T> wrapper)
          Create a read only proxy class for NBT, given an annotated interface.
          - + +static ReadWriteNBT +readNBT(InputStream stream) +
          Reads in an NBT stream and returns a ReadWriteNBT object
          + + + static ReadableNBT readNbt(org.bukkit.inventory.ItemStack item)
          Get a read only instance of the items NBT.
          - + static <T extends NBTProxy>
          T
          readNbt(org.bukkit.inventory.ItemStack item, Class<T> wrapper)
          Create a read only proxy class for NBT, given an annotated interface.
          + +static ReadWriteNBT +wrapNMSTag(Object nmsNbtTag) +
          Helper method for other developers using NMS.
          + + + +static void +writeFile(File file, + ReadWriteNBT nbt) +
          Saves NBT data to the provided file.
          + +
          • @@ -622,9 +669,9 @@

            getPersistentData

            getPersistentData

            public static <T> T getPersistentData(org.bukkit.block.BlockState blockState,
                                                   Function<ReadableNBT,T> getter)
            -
            It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
            +
            It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
            Parameters:
            blockState - The block state of the block you want to get the data from.
            @@ -700,7 +747,7 @@

            modifyComponents

            Consumer<ReadWriteNBT> consumer)
            It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. - This method is quiet expensive, so don't overuse it.
            + This method is quite expensive, so don't overuse it.
            Parameters:
            item - The item you want to modify the components of
            @@ -718,7 +765,7 @@

            modifyComponents

            Function<ReadWriteNBT,T> function)
            It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. - This method is quiet expensive, so don't overuse it.
            + This method is quite expensive, so don't overuse it.
            Parameters:
            item - The item you want to modify the components of
            @@ -728,6 +775,44 @@

            modifyComponents

          + + + +
            +
          • +

            getComponents

            +
            public static void getComponents(org.bukkit.inventory.ItemStack item,
            +                                 Consumer<ReadableNBT> consumer)
            +
            It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. + This method is quite expensive, try to cache the results/use it smartly.
            +
            +
            Parameters:
            +
            item - The item you want to read the components of
            +
            consumer - The consumer that will be used to read the components.
            +
            +
          • +
          + + + +
            +
          • +

            getComponents

            +
            public static <T> T getComponents(org.bukkit.inventory.ItemStack item,
            +                                  Function<ReadableNBT,T> function)
            +
            It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT. This is for 1.20.5+ only. + This method is quite expensive, try to cache the results/use it smartly.
            +
            +
            Parameters:
            +
            item - The item you want to read the components of
            +
            function - The consumer that will be used to read the components.
            +
            Returns:
            +
            The return type is the same as the return type of the function.
            +
            +
          • +
          @@ -982,7 +1067,100 @@

          parseNBT

          Parameters:
          nbtString - The NBT string to parse.
          Returns:
          -
          A new NBTContainer object.
          +
          A new ReadWriteNBT object.
          +
      + +
    + + + +
      +
    • +

      readNBT

      +
      public static ReadWriteNBT readNBT(InputStream stream)
      +
      Reads in an NBT stream and returns a ReadWriteNBT object
      +
      +
      Parameters:
      +
      stream - The NBT stream to read.
      +
      Returns:
      +
      A new ReadWriteNBT object.
      +
      +
    • +
    + + + +
      +
    • +

      wrapNMSTag

      +
      public static ReadWriteNBT wrapNMSTag(Object nmsNbtTag)
      +
      Helper method for other developers using NMS. Allows to wrap any + net.minecraft.nbt.CompoundTag to a NBTAPI ReadWriteNBT object.
      +
      +
      Parameters:
      +
      nmsNbtTag - Needs to be a valid net.minecraft.nbt.CompoundTag
      +
      Returns:
      +
      A new ReadWriteNBT object.
      +
      +
    • +
    + + + +
      +
    • +

      getFileHandle

      +
      public static NBTFileHandle getFileHandle(File file)
      +                                   throws IOException
      +
      Creates a NBTFileHandle that uses @param file to store its data. If this file + exists, the data will be loaded, otherwise a new file gets created.
      +
      +
      Parameters:
      +
      file -
      +
      Throws:
      +
      IOException
      +
      +
    • +
    + + + +
      +
    • +

      readFile

      +
      public static ReadWriteNBT readFile(File file)
      +                             throws IOException
      +
      Reads NBT data from the provided file. +

      + Returns an empty tag if the file does not exist.

      +
      +
      Parameters:
      +
      file - file to read
      +
      Returns:
      +
      ReadWriteNBT of the files data
      +
      Throws:
      +
      IOException - exception
      +
      +
    • +
    + + + +
      +
    • +

      writeFile

      +
      public static void writeFile(File file,
      +                             ReadWriteNBT nbt)
      +                      throws IOException
      +
      Saves NBT data to the provided file. +

      + Will fully override the file if it already exists.

      +
      +
      Parameters:
      +
      file - file
      +
      nbt - NBT data
      +
      Throws:
      +
      IOException - exception
    diff --git a/v2-plugin/de/tr7zw/nbtapi/NBTBlock.html b/v2-plugin/de/tr7zw/nbtapi/NBTBlock.html index 9f86f29f4..bd6e14640 100644 --- a/v2-plugin/de/tr7zw/nbtapi/NBTBlock.html +++ b/v2-plugin/de/tr7zw/nbtapi/NBTBlock.html @@ -2,10 +2,10 @@ - + NBTBlock (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/NBTChunk.html b/v2-plugin/de/tr7zw/nbtapi/NBTChunk.html index 66b6460f0..678f2fd51 100644 --- a/v2-plugin/de/tr7zw/nbtapi/NBTChunk.html +++ b/v2-plugin/de/tr7zw/nbtapi/NBTChunk.html @@ -2,10 +2,10 @@ - + NBTChunk (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/NBTCompound.html b/v2-plugin/de/tr7zw/nbtapi/NBTCompound.html index b024f2a8c..5c28adc23 100644 --- a/v2-plugin/de/tr7zw/nbtapi/NBTCompound.html +++ b/v2-plugin/de/tr7zw/nbtapi/NBTCompound.html @@ -2,10 +2,10 @@ - + NBTCompound (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/NBTCompoundList.html b/v2-plugin/de/tr7zw/nbtapi/NBTCompoundList.html index 04d020533..f3787f881 100644 --- a/v2-plugin/de/tr7zw/nbtapi/NBTCompoundList.html +++ b/v2-plugin/de/tr7zw/nbtapi/NBTCompoundList.html @@ -2,10 +2,10 @@ - + NBTCompoundList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -210,8 +210,10 @@

    Method Summary

    -NBTCompound -addCompound(ReadWriteNBT comp)  +ReadWriteNBT +addCompound(ReadableNBT comp) +
    Adds a copy of the Compound to the end of the List and returns it.
    + protected Object @@ -347,13 +349,21 @@

    addCompound

    - + diff --git a/v2-plugin/de/tr7zw/nbtapi/NBTContainer.html b/v2-plugin/de/tr7zw/nbtapi/NBTContainer.html index 3eb0ff388..9a400068e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/NBTContainer.html +++ b/v2-plugin/de/tr7zw/nbtapi/NBTContainer.html @@ -2,10 +2,10 @@ - + NBTContainer (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -146,22 +146,28 @@

    Constructor Summary

    NBTContainer() -
    Creates an empty, standalone NBTCompound
    +
    Deprecated. 
    NBTContainer(InputStream inputsteam) -
    Reads in a NBT InputStream
    +
    Deprecated.  +
    Use NBT.readNBT
    +
    NBTContainer(Object nbt) -
    Takes in any NMS Compound to wrap it
    +
    Deprecated.  +
    Use NBT.wrapNMSTag
    +
    NBTContainer(String nbtString) -
    Parses in a NBT String to a standalone NBTCompound.
    +
    Deprecated.  +
    Use NBT.parseNBT
    +
    @@ -245,7 +251,9 @@

    Constructor Detail

    • NBTContainer

      -
      public NBTContainer()
      +
      @Deprecated
      +public NBTContainer()
      +
      Deprecated. 
      Creates an empty, standalone NBTCompound
    @@ -255,7 +263,9 @@

    NBTContainer

    + + + +
      +
    • +

      addCompound

      +
      ReadWriteNBT addCompound(ReadableNBT comp)
      +
      Adds a copy of the Compound to the end of the List and returns it. When null + is given, a new Compound will be created
      +
      +
      Parameters:
      +
      comp -
      +
      Returns:
      +
      +
    • +
    diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/ReadWriteNBTList.html b/v2-plugin/de/tr7zw/nbtapi/iface/ReadWriteNBTList.html index 68b7c8e7a..bbb2f6b3b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/ReadWriteNBTList.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/ReadWriteNBTList.html @@ -2,10 +2,10 @@ - + ReadWriteNBTList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/ReadableItemNBT.html b/v2-plugin/de/tr7zw/nbtapi/iface/ReadableItemNBT.html index c78d47135..466819750 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/ReadableItemNBT.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/ReadableItemNBT.html @@ -2,10 +2,10 @@ - + ReadableItemNBT (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBT.html b/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBT.html index 02852319f..84537e66a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBT.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBT.html @@ -2,10 +2,10 @@ - + ReadableNBT (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -102,7 +102,7 @@

    Interface ReadableNBT

  • All Known Subinterfaces:
    -
    ReadableItemNBT, ReadWriteItemNBT, ReadWriteNBT
    +
    NBTFileHandle, ReadableItemNBT, ReadWriteItemNBT, ReadWriteNBT
    All Known Implementing Classes:
    diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBTList.html b/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBTList.html index 02d0735d5..75b2cfdad 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBTList.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/ReadableNBTList.html @@ -2,10 +2,10 @@ - + ReadableNBTList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/NBTFileHandle.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/NBTFileHandle.html new file mode 100644 index 000000000..972bc105b --- /dev/null +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/NBTFileHandle.html @@ -0,0 +1,183 @@ + + + + + + +Uses of Interface de.tr7zw.nbtapi.iface.NBTFileHandle (item-nbt-api-plugin 2.13.3-SNAPSHOT API) + + + + + + + + + + + +
    +

    Uses of Interface
    de.tr7zw.nbtapi.iface.NBTFileHandle

    +
    +
    + +
    + + + + +

    Copyright © 2015–2024 tr7zw. All rights reserved.

    + + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/NBTHandler.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/NBTHandler.html index cd152ccc4..e16acf9f4 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/NBTHandler.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/NBTHandler.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.NBTHandler (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteItemNBT.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteItemNBT.html index d4ecce665..7e33d4259 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteItemNBT.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteItemNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.ReadWriteItemNBT (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBT.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBT.html index d10fcea0f..1408302df 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBT.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.ReadWriteNBT (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -177,43 +177,65 @@

    Uses of +ReadWriteNBT +NBTCompoundList.addCompound(ReadableNBT comp)  + + static ReadWriteNBT NBT.createNBTObject()
    Create a new NBTContainer object and return it.
    - + static ReadWriteNBT NBT.gameProfileToNBT(com.mojang.authlib.GameProfile profile)
    It converts a GameProfile object to a ReadWriteNBT object
    - + static ReadWriteNBT NBT.itemStackArrayToNBT(org.bukkit.inventory.ItemStack[] itemStacks)
    It converts an array of ItemStacks into a ReadWriteNBT object
    - + static ReadWriteNBT NBT.itemStackToNBT(org.bukkit.inventory.ItemStack itemStack)
    It converts an ItemStack to a ReadWriteNBT object
    - + static ReadWriteNBT NBT.parseNBT(String nbtString)
    It takes a nbt json string, and returns a ReadWriteNBT object
    + +static ReadWriteNBT +NBT.readFile(File file) +
    Reads NBT data from the provided file.
    + + +static ReadWriteNBT +NBT.readNBT(InputStream stream) +
    Reads in an NBT stream and returns a ReadWriteNBT object
    + + + ReadWriteNBT NBTCompound.resolveCompound(String key)  - + ReadWriteNBT NBTCompound.resolveOrCreateCompound(String key)  + +static ReadWriteNBT +NBT.wrapNMSTag(Object nmsNbtTag) +
    Helper method for other developers using NMS.
    + + @@ -237,18 +259,21 @@

    Uses of

    - - - - - + + + + +
    NBTCompoundNBTCompoundList.addCompound(ReadWriteNBT comp) 
    protected Object NBTCompoundList.asTag(ReadWriteNBT object) 
    NBTListCompound NBTCompoundList.set(int index, ReadWriteNBT element) 
    static voidNBT.writeFile(File file, + ReadWriteNBT nbt) +
    Saves NBT data to the provided file.
    +
    @@ -373,6 +398,10 @@

    Uses of

    + + + + @@ -392,25 +421,31 @@

    Uses of

    - + + + + + - + - + - + + + + + - + - + - + @@ -249,12 +253,28 @@

    Uses of

    + + + + + + + + @@ -313,14 +333,18 @@

    Uses of

    - + - + + + + + @@ -352,11 +376,17 @@

    Uses of

    + + + + - + - + - + + + + + - + - + - + - + - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/iface/package-tree.html index e393a70f8..460ee381a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.iface Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -100,6 +100,7 @@

    Interface Hierarchy

  • de.tr7zw.nbtapi.iface.ReadWriteNBT
  • diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/package-use.html b/v2-plugin/de/tr7zw/nbtapi/iface/package-use.html index 46586640c..8d7170305 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/package-use.html @@ -2,10 +2,10 @@ - +Uses of Package de.tr7zw.nbtapi.iface (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -116,30 +116,33 @@

    Uses of Package<

    - + - + + + + - + - + - + - + - + diff --git a/v2-plugin/de/tr7zw/nbtapi/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/package-frame.html index 53a82ce1e..b0076a610 100644 --- a/v2-plugin/de/tr7zw/nbtapi/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/package-frame.html @@ -2,10 +2,10 @@ - +de.tr7zw.nbtapi (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/package-summary.html index c5f5244a0..e8c8aea13 100644 --- a/v2-plugin/de/tr7zw/nbtapi/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/package-summary.html @@ -2,10 +2,10 @@ - +de.tr7zw.nbtapi (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/package-tree.html index afc2cb4eb..efdfabcdd 100644 --- a/v2-plugin/de/tr7zw/nbtapi/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/package-tree.html @@ -2,10 +2,10 @@ - +de.tr7zw.nbtapi Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -89,7 +89,7 @@

    Class Hierarchy

    • de.tr7zw.nbtapi.NBTContainer
    • de.tr7zw.nbtapi.NBTEntity
    • -
    • de.tr7zw.nbtapi.NBTFile
    • +
    • de.tr7zw.nbtapi.NBTFile (implements de.tr7zw.nbtapi.iface.NBTFileHandle)
    • de.tr7zw.nbtapi.NBTItem (implements de.tr7zw.nbtapi.iface.ReadWriteItemNBT)
    • de.tr7zw.nbtapi.NBTListCompound
    • de.tr7zw.nbtapi.NBTPersistentDataContainer
    • diff --git a/v2-plugin/de/tr7zw/nbtapi/package-use.html b/v2-plugin/de/tr7zw/nbtapi/package-use.html index 0388365be..1f82461fc 100644 --- a/v2-plugin/de/tr7zw/nbtapi/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/NBTAPI.html b/v2-plugin/de/tr7zw/nbtapi/plugin/NBTAPI.html index 17529367d..b0d0a8f9b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/NBTAPI.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/NBTAPI.html @@ -2,10 +2,10 @@ - + NBTAPI (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/class-use/NBTAPI.html b/v2-plugin/de/tr7zw/nbtapi/plugin/class-use/NBTAPI.html index a733df15c..7c96dd44c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/class-use/NBTAPI.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/class-use/NBTAPI.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.NBTAPI (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/package-frame.html index 721aaad90..e1a30d5f7 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/package-summary.html index cec99b870..23f8ae00f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/package-tree.html index a29e2743c..55415321d 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/package-use.html index 50683f405..a45598a80 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/GameprofileTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/GameprofileTest.html index 3ca4977d6..e44f8d282 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/GameprofileTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/GameprofileTest.html @@ -2,10 +2,10 @@ - + GameprofileTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/NBTFileTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/NBTFileTest.html index 6f5ffe999..80c59e5d1 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/NBTFileTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/NBTFileTest.html @@ -2,10 +2,10 @@ - + NBTFileTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/Test.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/Test.html index 355007b4c..b132081db 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/Test.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/Test.html @@ -2,10 +2,10 @@ - + Test (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/BlockNBTTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/BlockNBTTest.html index 6883cfc4d..cede89efd 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/BlockNBTTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/BlockNBTTest.html @@ -2,10 +2,10 @@ - + BlockNBTTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/class-use/BlockNBTTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/class-use/BlockNBTTest.html index c0809e03b..417778673 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/class-use/BlockNBTTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/class-use/BlockNBTTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.blocks.BlockNBTTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-frame.html index a227c8801..abaac43b4 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.blocks (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-summary.html index 32305ad35..38bb3e3cf 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.blocks (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-tree.html index 7a4db13bb..5de60169e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.blocks Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-use.html index e79c3928c..80d422eaf 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/blocks/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests.blocks (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/ChunkNBTPersistentTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/ChunkNBTPersistentTest.html index 7724e5cb0..4962b36bd 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/ChunkNBTPersistentTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/ChunkNBTPersistentTest.html @@ -2,10 +2,10 @@ - + ChunkNBTPersistentTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/class-use/ChunkNBTPersistentTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/class-use/ChunkNBTPersistentTest.html index 0cd36ffc0..98f314599 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/class-use/ChunkNBTPersistentTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/class-use/ChunkNBTPersistentTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.chunks.ChunkNBTPersistentTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-frame.html index a1880565f..12d1af7c3 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.chunks (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-summary.html index f4967c2e3..9c8f01945 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.chunks (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-tree.html index 71555e45c..cd66cc6da 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.chunks Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-use.html index bd37a848f..21eb3869a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/chunks/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests.chunks (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/GameprofileTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/GameprofileTest.html index 5f42d760c..b85479abb 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/GameprofileTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/GameprofileTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.GameprofileTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/NBTFileTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/NBTFileTest.html index 69ce53cf5..e670581e8 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/NBTFileTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/NBTFileTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.NBTFileTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/Test.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/Test.html index 8d6685d7f..7866f1be6 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/Test.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/class-use/Test.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.plugin.tests.Test (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EnumTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EnumTest.html index d14d7b66e..41e46cae8 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EnumTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EnumTest.html @@ -2,10 +2,10 @@ - + EnumTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EqualsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EqualsTest.html index 2621a8d23..cf2c2e936 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EqualsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/EqualsTest.html @@ -2,10 +2,10 @@ - + EqualsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ForEachTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ForEachTest.html index 00b322062..992e37607 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ForEachTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ForEachTest.html @@ -2,10 +2,10 @@ - + ForEachTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GetterSetterTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GetterSetterTest.html index f6cd2ecfe..bebdfd0fb 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GetterSetterTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GetterSetterTest.html @@ -2,10 +2,10 @@ - + GetterSetterTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.SimpleJsonTestObject.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.SimpleJsonTestObject.html index 7d3ddb8c0..928c0ae73 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.SimpleJsonTestObject.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.SimpleJsonTestObject.html @@ -2,10 +2,10 @@ - + GsonTest.SimpleJsonTestObject (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.html index d1a18e14c..7f4ec5106 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/GsonTest.html @@ -2,10 +2,10 @@ - + GsonTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/InterfaceTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/InterfaceTest.html index b0f0da420..2f8c35b26 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/InterfaceTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/InterfaceTest.html @@ -2,10 +2,10 @@ - + InterfaceTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/IteratorTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/IteratorTest.html index a634f7718..988d8e80e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/IteratorTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/IteratorTest.html @@ -2,10 +2,10 @@ - + IteratorTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ListTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ListTest.html index 6fcb3d8b3..982cd53b4 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ListTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ListTest.html @@ -2,10 +2,10 @@ - + ListTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/LongArrayTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/LongArrayTest.html index 855230b93..1d5cfa796 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/LongArrayTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/LongArrayTest.html @@ -2,10 +2,10 @@ - + LongArrayTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/MergeTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/MergeTest.html index fc5ae150c..78c4bb52a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/MergeTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/MergeTest.html @@ -2,10 +2,10 @@ - + MergeTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ModernSubCompoundsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ModernSubCompoundsTest.html index 5e519e521..305563b07 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ModernSubCompoundsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ModernSubCompoundsTest.html @@ -2,10 +2,10 @@ - + ModernSubCompoundsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/RemovingKeys.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/RemovingKeys.html index af1404b85..8e98cda24 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/RemovingKeys.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/RemovingKeys.html @@ -2,10 +2,10 @@ - + RemovingKeys (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ResolveTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ResolveTest.html index 4b502e73f..f2653aa1e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ResolveTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/ResolveTest.html @@ -2,10 +2,10 @@ - + ResolveTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/StreamTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/StreamTest.html index 6cfdcfdab..85e803a5a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/StreamTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/StreamTest.html @@ -2,10 +2,10 @@ - + StreamTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/SubCompoundsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/SubCompoundsTest.html index 27c39091e..2be9237f4 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/SubCompoundsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/SubCompoundsTest.html @@ -2,10 +2,10 @@ - + SubCompoundsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/TypeTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/TypeTest.html index cbf6b7f38..2bddb4eb7 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/TypeTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/TypeTest.html @@ -2,10 +2,10 @@ - + TypeTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EnumTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EnumTest.html index 41bad709b..4d01e9243 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EnumTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EnumTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.EnumTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EqualsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EqualsTest.html index f432bbd85..f753ce4e5 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EqualsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/EqualsTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.EqualsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ForEachTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ForEachTest.html index 9a5c106a1..16a6a6370 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ForEachTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ForEachTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.ForEachTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GetterSetterTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GetterSetterTest.html index 1d85bc397..861d69b63 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GetterSetterTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GetterSetterTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.GetterSetterTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.SimpleJsonTestObject.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.SimpleJsonTestObject.html index 47c344cb1..4c8d920b0 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.SimpleJsonTestObject.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.SimpleJsonTestObject.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.GsonTest.SimpleJsonTestObject (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.html index f3c5e9030..2c2513cd7 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/GsonTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.GsonTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/InterfaceTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/InterfaceTest.html index 01f84cc11..3f49c7fec 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/InterfaceTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/InterfaceTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.InterfaceTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/IteratorTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/IteratorTest.html index 111f86b3b..cea5b3752 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/IteratorTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/IteratorTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.IteratorTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ListTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ListTest.html index 20534156b..cabdd3efb 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ListTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ListTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.ListTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/LongArrayTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/LongArrayTest.html index 6e380f15d..53b925f09 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/LongArrayTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/LongArrayTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.LongArrayTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/MergeTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/MergeTest.html index 572ea7693..17d34172a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/MergeTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/MergeTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.MergeTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ModernSubCompoundsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ModernSubCompoundsTest.html index 42d543b2a..faa1f4be8 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ModernSubCompoundsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ModernSubCompoundsTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.ModernSubCompoundsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/RemovingKeys.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/RemovingKeys.html index fe9454610..90d6293e1 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/RemovingKeys.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/RemovingKeys.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.RemovingKeys (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ResolveTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ResolveTest.html index b3f9c1a1c..acc0c687a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ResolveTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/ResolveTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.ResolveTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/StreamTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/StreamTest.html index b4787c175..d175cb065 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/StreamTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/StreamTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.StreamTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/SubCompoundsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/SubCompoundsTest.html index 97c10a0dc..05ad65d6c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/SubCompoundsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/SubCompoundsTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.SubCompoundsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/TypeTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/TypeTest.html index 66b012a2e..ea2ddd0b7 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/TypeTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/class-use/TypeTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.compounds.TypeTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-frame.html index 83d135bf1..b6d62a044 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.compounds (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-summary.html index e3301de72..12fa37db8 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.compounds (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-tree.html index 182fff76f..3f815eccc 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.compounds Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-use.html index 9411c626a..db1e3de20 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/compounds/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests.compounds (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityCustomNbtPersistentTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityCustomNbtPersistentTest.html index 72a5661e3..a2b97080d 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityCustomNbtPersistentTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityCustomNbtPersistentTest.html @@ -2,10 +2,10 @@ - + EntityCustomNbtPersistentTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityTest.html index c213d152b..30cfa3844 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/EntityTest.html @@ -2,10 +2,10 @@ - + EntityTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityCustomNbtPersistentTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityCustomNbtPersistentTest.html index 3a583b0c8..695c00476 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityCustomNbtPersistentTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityCustomNbtPersistentTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.entities.EntityCustomNbtPersistentTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityTest.html index 9309cc178..f720d253a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/class-use/EntityTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.entities.EntityTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-frame.html index 5a95b28c9..a7917336f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.entities (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-summary.html index 1403f2b18..563e54b9e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.entities (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-tree.html index 9b8615e9f..ba0a1a543 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.entities Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-use.html index 9fb6350b9..07f3557af 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/entities/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests.entities (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ComponentsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ComponentsTest.html index aa3870a30..b1e1bcdd7 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ComponentsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ComponentsTest.html @@ -2,10 +2,10 @@ - + ComponentsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyMetaTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyMetaTest.html index fd2640a13..19fcda8e4 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyMetaTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyMetaTest.html @@ -2,10 +2,10 @@ - + DirectApplyMetaTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyTest.html index 539d0d06d..0962e469b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/DirectApplyTest.html @@ -2,10 +2,10 @@ - + DirectApplyTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/EmptyItemTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/EmptyItemTest.html index 0e0806442..ef3191634 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/EmptyItemTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/EmptyItemTest.html @@ -2,10 +2,10 @@ - + EmptyItemTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemConversionTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemConversionTest.html index 349a929af..c0eeb05f0 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemConversionTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemConversionTest.html @@ -2,10 +2,10 @@ - + ItemConversionTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemMergingTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemMergingTest.html index ff16bb6b6..80880a3ab 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemMergingTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemMergingTest.html @@ -2,10 +2,10 @@ - + ItemMergingTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemStackConversionTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemStackConversionTest.html index d72f75027..1348817e9 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemStackConversionTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/ItemStackConversionTest.html @@ -2,10 +2,10 @@ - + ItemStackConversionTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/LegacyItemTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/LegacyItemTest.html index 849fa36d6..ca681ad39 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/LegacyItemTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/LegacyItemTest.html @@ -2,10 +2,10 @@ - + LegacyItemTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/MetaTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/MetaTest.html index 190087942..2a4b1f3da 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/MetaTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/MetaTest.html @@ -2,10 +2,10 @@ - + MetaTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/NBTModifyItemTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/NBTModifyItemTest.html index 01926d006..def8f1479 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/NBTModifyItemTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/NBTModifyItemTest.html @@ -2,10 +2,10 @@ - + NBTModifyItemTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/SmuggleTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/SmuggleTest.html index e5be3ac63..0a3f25a35 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/SmuggleTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/SmuggleTest.html @@ -2,10 +2,10 @@ - + SmuggleTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ComponentsTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ComponentsTest.html index 80b127409..5beda550d 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ComponentsTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ComponentsTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.ComponentsTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyMetaTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyMetaTest.html index 7f114fa3a..04afb73bd 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyMetaTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyMetaTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.DirectApplyMetaTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyTest.html index dc2ab049a..826e59bbe 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/DirectApplyTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.DirectApplyTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/EmptyItemTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/EmptyItemTest.html index bdc069eec..eb60a1bf6 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/EmptyItemTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/EmptyItemTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.EmptyItemTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemConversionTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemConversionTest.html index ca68627b9..973b41a21 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemConversionTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemConversionTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.ItemConversionTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemMergingTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemMergingTest.html index 1591b56b1..6ecaf3919 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemMergingTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemMergingTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.ItemMergingTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemStackConversionTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemStackConversionTest.html index c99740435..e555d257e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemStackConversionTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/ItemStackConversionTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.ItemStackConversionTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/LegacyItemTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/LegacyItemTest.html index 90f185884..68b22df66 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/LegacyItemTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/LegacyItemTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.LegacyItemTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/MetaTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/MetaTest.html index de5241965..ddce0964b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/MetaTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/MetaTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.MetaTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/NBTModifyItemTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/NBTModifyItemTest.html index 99917d4f9..55b6a8028 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/NBTModifyItemTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/NBTModifyItemTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.NBTModifyItemTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/SmuggleTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/SmuggleTest.html index e832cd89a..b27ad0c0c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/SmuggleTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/class-use/SmuggleTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.items.SmuggleTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-frame.html index 1ab6157e7..445679e02 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.items (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-summary.html index b26bb8147..1734baab8 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.items (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-tree.html index 2e7aff609..5e250ec35 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.items Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-use.html index 0b784b594..247420676 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/items/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests.items (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-frame.html index 14b4524e6..61eac9e55 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-summary.html index ec1835a37..39a524472 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-tree.html index e39f362c3..ba2dad0eb 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-use.html index bdbb2a7bc..3726c323f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.Statistic.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.Statistic.html index 4b6d52f54..7a9edf897 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.Statistic.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.Statistic.html @@ -2,10 +2,10 @@ - + SimpleProxyTest.Statistic (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.TestInterface.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.TestInterface.html index b16ba31e0..641426256 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.TestInterface.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.TestInterface.html @@ -2,10 +2,10 @@ - + SimpleProxyTest.TestInterface (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.html index 6c3667bf0..09c5f0dba 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/SimpleProxyTest.html @@ -2,10 +2,10 @@ - + SimpleProxyTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.Statistic.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.Statistic.html index 53168f2bb..799838585 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.Statistic.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.Statistic.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.plugin.tests.proxy.SimpleProxyTest.Statistic (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.TestInterface.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.TestInterface.html index 77683e293..4f6b08fe9 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.TestInterface.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.TestInterface.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.plugin.tests.proxy.SimpleProxyTest.TestInterface (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.html index 850a50744..f45dae3cb 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/class-use/SimpleProxyTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.proxy.SimpleProxyTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-frame.html index 24c8d9df7..1ae68e223 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.proxy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-summary.html index bb69cde5f..30d782a9d 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.proxy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-tree.html index 0063824d6..d696412ad 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.proxy Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-use.html index ef2eebbb6..fff8b456f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/proxy/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests.proxy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TileTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TileTest.html index 0a50821d1..c071757ee 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TileTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TileTest.html @@ -2,10 +2,10 @@ - + TileTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TilesCustomNBTPersistentTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TilesCustomNBTPersistentTest.html index b6d3eeb90..c6fa6b743 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TilesCustomNBTPersistentTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/TilesCustomNBTPersistentTest.html @@ -2,10 +2,10 @@ - + TilesCustomNBTPersistentTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TileTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TileTest.html index 845dd211f..48ad379ae 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TileTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TileTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.tiles.TileTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TilesCustomNBTPersistentTest.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TilesCustomNBTPersistentTest.html index 930ebe4fc..a01bc6478 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TilesCustomNBTPersistentTest.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/class-use/TilesCustomNBTPersistentTest.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.plugin.tests.tiles.TilesCustomNBTPersistentTest (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-frame.html index b92cbcd8b..26035b3a1 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.tiles (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-summary.html index 6088d16ff..74b205bde 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.tiles (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-tree.html index 54ef384de..839581444 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.plugin.tests.tiles Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-use.html b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-use.html index a3e156aac..89e1cc857 100644 --- a/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/plugin/tests/tiles/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.plugin.tests.tiles (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/CheckUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/CheckUtil.html index 73cbc3e2d..d67f2bef2 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/CheckUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/CheckUtil.html @@ -2,10 +2,10 @@ - + CheckUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/DataFixerUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/DataFixerUtil.html index a3d5b52b9..b8ac7623b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/DataFixerUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/DataFixerUtil.html @@ -2,10 +2,10 @@ - + DataFixerUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -174,6 +174,10 @@

      Field Summary

    + + + +
    interface NBTFileHandle 
    interface  ReadWriteItemNBT 
    ReadWriteNBTReadWriteNBT.getCompound(String name) ReadWriteNBTCompoundList.addCompound(ReadableNBT comp) +
    Adds a copy of the Compound to the end of the List and returns it.
    +
    ReadWriteNBTReadWriteNBT.getCompound(String name) 
    ReadWriteNBT ReadWriteNBT.getOrCreateCompound(String name)
    The same as addCompound, just with a name that better reflects what it does
    ReadWriteNBT ReadWriteNBTCompoundList.remove(int i)
    Removes the element at the specified position in this list
    ReadWriteNBT ReadWriteNBT.resolveCompound(String key) 
    ReadWriteNBT ReadWriteNBT.resolveOrCreateCompound(String key)
    Returns the resolved and creates compounds as required.
    diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html index dd0daa14c..4533c4914 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTCompoundList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.ReadWriteNBTCompoundList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTList.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTList.html index ff1490fe6..32d387a08 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTList.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadWriteNBTList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.ReadWriteNBTList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableItemNBT.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableItemNBT.html index 5c1698ced..9b69ad3a5 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableItemNBT.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableItemNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.ReadableItemNBT (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBT.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBT.html index dfc10e76a..a46e0d009 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBT.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBT.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.ReadableNBT (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -188,24 +188,28 @@

    Uses of

    ReadWriteNBTNBTCompoundList.addCompound(ReadableNBT comp) 
    static com.mojang.authlib.GameProfile NBT.gameProfileFromNBT(ReadableNBT compound)
    It takes a NBT compound and returns a GameProfile
    static org.bukkit.inventory.ItemStack[] NBT.itemStackArrayFromNBT(ReadableNBT compound)
    It converts a ReadableNBT object into an array of ItemStacks
    static org.bukkit.inventory.ItemStack NBT.itemStackFromNBT(ReadableNBT compound)
    It converts a ReadableNBT object into an ItemStack
    void NBTCompound.mergeCompound(ReadableNBT comp) 
    static voidNBT.getComponents(org.bukkit.inventory.ItemStack item, + Consumer<ReadableNBT> consumer) +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    +
    static <T> TNBT.getComponents(org.bukkit.inventory.ItemStack item, + Function<ReadableNBT,T> function) +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    +
    static <T> T NBT.getPersistentData(org.bukkit.block.BlockState blockState, Function<ReadableNBT,T> getter) -
    It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
    +
    It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
    interface ReadableItemNBT NBTFileHandle 
    interface ReadWriteItemNBT ReadableItemNBT 
    interface ReadWriteItemNBT 
    interface  ReadWriteNBT 
    ReadWriteNBTReadWriteNBTCompoundList.addCompound(ReadableNBT comp) +
    Adds a copy of the Compound to the end of the List and returns it.
    +
    T NBTHandler.get(ReadableNBT nbt, String key) 
    void ReadWriteNBT.mergeCompound(ReadableNBT comp)
    Merges all data from comp into this compound.
    diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBTList.html b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBTList.html index 7a8e18d15..75853bfec 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBTList.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/class-use/ReadableNBTList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.iface.ReadableNBTList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/iface/package-frame.html index ee9c754fc..962f26b96 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.iface (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -14,6 +14,7 @@

    Interfaces

      +
    • NBTFileHandle
    • NBTHandler
    • ReadableItemNBT
    • ReadableNBT
    • diff --git a/v2-plugin/de/tr7zw/nbtapi/iface/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/iface/package-summary.html index b908352cf..277031b6d 100644 --- a/v2-plugin/de/tr7zw/nbtapi/iface/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/iface/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.iface (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -84,37 +84,41 @@

      Package de.tr7zw.nbtapi.iface

    NBTHandler<T>NBTFileHandle  
    ReadableItemNBTNBTHandler<T>  
    ReadableItemNBT 
    ReadableNBT
    This interface only exposes methods that get data without any changes to the underlying object.
    ReadableNBTList<T>  
    ReadWriteItemNBT  
    ReadWriteNBT  
    ReadWriteNBTCompoundList  
    ReadWriteNBTList<T>  
    NBTHandler NBTFileHandle 
    ReadableItemNBT NBTHandler 
    ReadableItemNBT 
    ReadableNBT
    This interface only exposes methods that get data without any changes to the underlying object.
    ReadableNBTList 
    ReadWriteItemNBT 
    ReadWriteNBT 
    ReadWriteNBTCompoundList 
    ReadWriteNBTList 
    static int VERSION1_21 
    static intVERSION1_21_2 

  • @@ -380,7 +384,7 @@

    VERSION1_20_5

    -
      +
      • VERSION1_21

        public static final int VERSION1_21
        @@ -390,6 +394,19 @@

        VERSION1_21

      + + + +
    diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/GameprofileUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/GameprofileUtil.html index 76fb16660..91a0fa207 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/GameprofileUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/GameprofileUtil.html @@ -2,10 +2,10 @@ - + GameprofileUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/GsonWrapper.html b/v2-plugin/de/tr7zw/nbtapi/utils/GsonWrapper.html index b91e64162..d165dd297 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/GsonWrapper.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/GsonWrapper.html @@ -2,10 +2,10 @@ - + GsonWrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedBarChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedBarChart.html index 08b87356d..caf7ef72a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedBarChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedBarChart.html @@ -2,10 +2,10 @@ - + Metrics.AdvancedBarChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedPie.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedPie.html index 8f2465578..abd685f21 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedPie.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.AdvancedPie.html @@ -2,10 +2,10 @@ - + Metrics.AdvancedPie (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.CustomChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.CustomChart.html index 221f603ea..5e40c8c95 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.CustomChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.CustomChart.html @@ -2,10 +2,10 @@ - + Metrics.CustomChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.DrilldownPie.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.DrilldownPie.html index c50df03f0..caadefa70 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.DrilldownPie.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.DrilldownPie.html @@ -2,10 +2,10 @@ - + Metrics.DrilldownPie (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html index 8083c3e7b..3d734b441 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.JsonObject.html @@ -2,10 +2,10 @@ - + Metrics.JsonObjectBuilder.JsonObject (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.html index fb72a940c..fd844c937 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.JsonObjectBuilder.html @@ -2,10 +2,10 @@ - + Metrics.JsonObjectBuilder (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MetricsBase.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MetricsBase.html index 76bb82cf1..2ad5e7e6a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MetricsBase.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MetricsBase.html @@ -2,10 +2,10 @@ - + Metrics.MetricsBase (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MultiLineChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MultiLineChart.html index ac036f8c8..b764dfdc5 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MultiLineChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.MultiLineChart.html @@ -2,10 +2,10 @@ - + Metrics.MultiLineChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimpleBarChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimpleBarChart.html index 67f16fc38..8e3409073 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimpleBarChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimpleBarChart.html @@ -2,10 +2,10 @@ - + Metrics.SimpleBarChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimplePie.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimplePie.html index 70d37f919..77bf0a147 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimplePie.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SimplePie.html @@ -2,10 +2,10 @@ - + Metrics.SimplePie (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SingleLineChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SingleLineChart.html index ac6e935a2..6bab4d74f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SingleLineChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.SingleLineChart.html @@ -2,10 +2,10 @@ - + Metrics.SingleLineChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.html b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.html index 24fde0055..73c80ed8a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/Metrics.html @@ -2,10 +2,10 @@ - + Metrics (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/MinecraftVersion.html b/v2-plugin/de/tr7zw/nbtapi/utils/MinecraftVersion.html index 4d727505c..9ae8fcd9f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/MinecraftVersion.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/MinecraftVersion.html @@ -2,10 +2,10 @@ - + MinecraftVersion (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -209,18 +209,21 @@

    Enum Constant Summary

    MC1_21_R1  -MC1_7_R4  +MC1_21_R2  -MC1_8_R3  +MC1_7_R4  -MC1_9_R1  +MC1_8_R3  -MC1_9_R2  +MC1_9_R1  +MC1_9_R2  + + UNKNOWN  @@ -612,12 +615,21 @@

    MC1_20_R4

    - diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.PathSegment.html b/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.PathSegment.html index b3b29cd8f..ad83289bb 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.PathSegment.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.PathSegment.html @@ -2,10 +2,10 @@ - + PathUtil.PathSegment (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.html index 0d80df35b..848604467 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/PathUtil.html @@ -2,10 +2,10 @@ - + PathUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/ReflectionUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/ReflectionUtil.html index e19cff142..166ccf25c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/ReflectionUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/ReflectionUtil.html @@ -2,10 +2,10 @@ - + ReflectionUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/UUIDUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/UUIDUtil.html index d698c455c..df4db2cc5 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/UUIDUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/UUIDUtil.html @@ -2,10 +2,10 @@ - + UUIDUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/VersionChecker.html b/v2-plugin/de/tr7zw/nbtapi/utils/VersionChecker.html index 01a8852cb..4917eb1f6 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/VersionChecker.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/VersionChecker.html @@ -2,10 +2,10 @@ - + VersionChecker (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/CheckUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/CheckUtil.html index f7dac28db..d4934df6a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/CheckUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/CheckUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.CheckUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/DataFixerUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/DataFixerUtil.html index 3466116d4..41f8a8775 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/DataFixerUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/DataFixerUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.DataFixerUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GameprofileUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GameprofileUtil.html index 3a8a1cd7a..ff86a5161 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GameprofileUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GameprofileUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.GameprofileUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GsonWrapper.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GsonWrapper.html index 1aab04818..146752d53 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GsonWrapper.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/GsonWrapper.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.GsonWrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html index f438c2b3a..158163b7f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedBarChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.AdvancedBarChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedPie.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedPie.html index cb93e527c..f3a9d3c68 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedPie.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.AdvancedPie.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.AdvancedPie (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.CustomChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.CustomChart.html index 54786e004..94a804749 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.CustomChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.CustomChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.CustomChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.DrilldownPie.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.DrilldownPie.html index be1077ba9..e7788cbcc 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.DrilldownPie.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.DrilldownPie.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.DrilldownPie (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html index 3cf51e188..02df16552 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.JsonObject.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.JsonObjectBuilder.JsonObject (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html index 7771aeaa7..cc4aea503 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.JsonObjectBuilder.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.JsonObjectBuilder (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MetricsBase.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MetricsBase.html index 3c6723279..a2e80b05c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MetricsBase.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MetricsBase.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.MetricsBase (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MultiLineChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MultiLineChart.html index 4cba6c2ea..da3fdb598 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MultiLineChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.MultiLineChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.MultiLineChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimpleBarChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimpleBarChart.html index 30c56771b..b927b3d8c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimpleBarChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimpleBarChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.SimpleBarChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimplePie.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimplePie.html index f6106df40..eb52b7932 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimplePie.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SimplePie.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.SimplePie (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SingleLineChart.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SingleLineChart.html index 175435fef..baaac76fc 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SingleLineChart.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.SingleLineChart.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics.SingleLineChart (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.html index 5fb7e0883..882177e8e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/Metrics.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.Metrics (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/MinecraftVersion.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/MinecraftVersion.html index 5036ea341..0ec033203 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/MinecraftVersion.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/MinecraftVersion.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.MinecraftVersion (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.PathSegment.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.PathSegment.html index efbb294e6..1c6f297ea 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.PathSegment.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.PathSegment.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.PathUtil.PathSegment (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.html index ecabafe93..bc02791d2 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/PathUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.PathUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/ReflectionUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/ReflectionUtil.html index 11ce13dfa..28558b552 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/ReflectionUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/ReflectionUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.ReflectionUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/UUIDUtil.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/UUIDUtil.html index ba5c73fec..beb920eaa 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/UUIDUtil.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/UUIDUtil.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.UUIDUtil (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/VersionChecker.html b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/VersionChecker.html index 8111ef617..3443ddb76 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/class-use/VersionChecker.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/class-use/VersionChecker.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.VersionChecker (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ClassWrapper.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ClassWrapper.html index b71a55175..9de14dc34 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ClassWrapper.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ClassWrapper.html @@ -2,10 +2,10 @@ - + ClassWrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/Forge1710Mappings.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/Forge1710Mappings.html index bf4c0f880..1ae509813 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/Forge1710Mappings.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/Forge1710Mappings.html @@ -2,10 +2,10 @@ - + Forge1710Mappings (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/MojangToMapping.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/MojangToMapping.html index ccf4a5293..f0863cc28 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/MojangToMapping.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/MojangToMapping.html @@ -2,10 +2,10 @@ - + MojangToMapping (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ObjectCreator.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ObjectCreator.html index c968eec9d..3abe78f94 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ObjectCreator.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ObjectCreator.html @@ -2,10 +2,10 @@ - + ObjectCreator (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/PackageWrapper.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/PackageWrapper.html index 675687382..8488f7feb 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/PackageWrapper.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/PackageWrapper.html @@ -2,10 +2,10 @@ - + PackageWrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html index fde3a6ed1..116d6cd7f 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.Since.html @@ -2,10 +2,10 @@ - + ReflectionMethod.Since (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.html index f3759a1bb..b11f0a479 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/ReflectionMethod.html @@ -2,10 +2,10 @@ - + ReflectionMethod (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html index f7a7817fb..b4236a712 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ClassWrapper.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.nmsmappings.ClassWrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html index 8d234a7c9..79cb6b4d9 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/Forge1710Mappings.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.nmsmappings.Forge1710Mappings (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html index 4baabb99e..37267c83d 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/MojangToMapping.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.nmsmappings.MojangToMapping (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html index dabb33b74..748f7c1df 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ObjectCreator.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.nmsmappings.ObjectCreator (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html index 01a9a4a71..352641a11 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/PackageWrapper.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.nmsmappings.PackageWrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html index 394ba4a38..f966ec395 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.Since.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.Since (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html index db47236e8..e9e2474c6 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/class-use/ReflectionMethod.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-frame.html index 86090f7d2..6e0ef675d 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.utils.nmsmappings (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-summary.html index f9e880321..d769e787b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.utils.nmsmappings (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-tree.html index 2a88935a6..bdda8aeb9 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.utils.nmsmappings Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -94,10 +94,10 @@

    Enum Hierarchy

    diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-use.html b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-use.html index a92429b9d..c05af429a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/nmsmappings/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.utils.nmsmappings (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/utils/package-frame.html index ea254e784..c9d6b13e5 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.utils (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/utils/package-summary.html index 2f4777a99..1c17ab98b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.utils (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/utils/package-tree.html index 37084f71f..615aefac6 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.utils Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/utils/package-use.html b/v2-plugin/de/tr7zw/nbtapi/utils/package-use.html index 4671283df..8f178519b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/utils/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/utils/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.utils (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/Casing.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/Casing.html index 27a407d5d..aeaa36218 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/Casing.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/Casing.html @@ -2,10 +2,10 @@ - + Casing (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTProxy.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTProxy.html index cb3a2b64b..7bfec36b1 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTProxy.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTProxy.html @@ -2,10 +2,10 @@ - + NBTProxy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.Type.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.Type.html index be03e653b..bda8ec01a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.Type.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.Type.html @@ -2,10 +2,10 @@ - + NBTTarget.Type (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.html index 6883bc5ae..68a00e42c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/NBTTarget.html @@ -2,10 +2,10 @@ - + NBTTarget (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyBuilder.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyBuilder.html index cc95413c3..b42dedba2 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyBuilder.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyBuilder.html @@ -2,10 +2,10 @@ - + ProxyBuilder (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyList.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyList.html index 24fe5608e..d124a0192 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyList.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/ProxyList.html @@ -2,10 +2,10 @@ - + ProxyList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/Casing.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/Casing.html index 5cb73b7df..77358f60e 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/Casing.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/Casing.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.wrapper.Casing (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTProxy.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTProxy.html index 8bcb6dae6..f4e1ba92b 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTProxy.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTProxy.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.wrapper.NBTProxy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.Type.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.Type.html index 61bd0822b..1c6f2513c 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.Type.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.Type.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.wrapper.NBTTarget.Type (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.html index 5cf2fc52d..616e7d7ca 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/NBTTarget.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.wrapper.NBTTarget (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyBuilder.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyBuilder.html index f94035fbb..9165f0721 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyBuilder.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyBuilder.html @@ -2,10 +2,10 @@ - + Uses of Class de.tr7zw.nbtapi.wrapper.ProxyBuilder (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyList.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyList.html index 68e131f1c..30bac7235 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyList.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/class-use/ProxyList.html @@ -2,10 +2,10 @@ - + Uses of Interface de.tr7zw.nbtapi.wrapper.ProxyList (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-frame.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-frame.html index 430c2ab73..7baa3b346 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-frame.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-frame.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.wrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-summary.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-summary.html index fef82be63..168c081a8 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-summary.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-summary.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.wrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-tree.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-tree.html index 332dd3634..122a3b109 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-tree.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-tree.html @@ -2,10 +2,10 @@ - + de.tr7zw.nbtapi.wrapper Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-use.html b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-use.html index 9389a98b2..7514ea22a 100644 --- a/v2-plugin/de/tr7zw/nbtapi/wrapper/package-use.html +++ b/v2-plugin/de/tr7zw/nbtapi/wrapper/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package de.tr7zw.nbtapi.wrapper (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/deprecated-list.html b/v2-plugin/deprecated-list.html index 802b88e8d..7d53f4a13 100644 --- a/v2-plugin/deprecated-list.html +++ b/v2-plugin/deprecated-list.html @@ -2,10 +2,10 @@ - + Deprecated List (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -150,7 +150,7 @@

    Contents

    de.tr7zw.nbtapi.NBTCompound.hasKey(String) -
    Use hasTag(String) instead
    + @@ -160,6 +160,16 @@

    Contents

    de.tr7zw.nbtapi.NBTItem.mergeNBT(ItemStack) +de.tr7zw.nbtapi.NBTFile.readFrom(File) +
    Use NBT.readFile(file)
    + + + +de.tr7zw.nbtapi.NBTFile.saveTo(File, NBTCompound) +
    Use NBT.writeFile(file, nbt)
    + + + de.tr7zw.nbtapi.NBTCompound.setObject(String, Object) @@ -186,15 +196,38 @@

    Contents

    +de.tr7zw.nbtapi.NBTContainer() + + +de.tr7zw.nbtapi.NBTContainer(InputStream) +
    Use NBT.readNBT
    + + + +de.tr7zw.nbtapi.NBTContainer(Object) +
    Use NBT.wrapNMSTag
    + + + +de.tr7zw.nbtapi.NBTContainer(String) +
    Use NBT.parseNBT
    + + + de.tr7zw.nbtapi.NBTEntity(Entity) -de.tr7zw.nbtapi.NBTItem(ItemStack) +de.tr7zw.nbtapi.NBTFile(File) +
    Use NBT.getFileHandle(file)
    + -de.tr7zw.nbtapi.NBTItem(ItemStack, boolean) +de.tr7zw.nbtapi.NBTItem(ItemStack) +de.tr7zw.nbtapi.NBTItem(ItemStack, boolean) + + de.tr7zw.nbtapi.NBTTileEntity(BlockState) diff --git a/v2-plugin/help-doc.html b/v2-plugin/help-doc.html index a4d24ce40..181b5559d 100644 --- a/v2-plugin/help-doc.html +++ b/v2-plugin/help-doc.html @@ -2,10 +2,10 @@ - + API Help (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/index-all.html b/v2-plugin/index-all.html index d7d9fd0d8..db7409f33 100644 --- a/v2-plugin/index-all.html +++ b/v2-plugin/index-all.html @@ -2,10 +2,10 @@ - + Index (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -112,6 +112,10 @@

    A

    Adds a new compound tag to the current compound tag
    +
    addCompound(ReadableNBT) - Method in interface de.tr7zw.nbtapi.iface.ReadWriteNBTCompoundList
    +
    +
    Adds a copy of the Compound to the end of the List and returns it.
    +
    addCompound(String) - Method in class de.tr7zw.nbtapi.NBTCompound
    Creates a subCompound, or returns it if already provided
    @@ -124,7 +128,7 @@

    A

    Adds a copy of the Compound to the end of the List and returns it.
    -
    addCompound(ReadWriteNBT) - Method in class de.tr7zw.nbtapi.NBTCompoundList
    +
    addCompound(ReadableNBT) - Method in class de.tr7zw.nbtapi.NBTCompoundList
     
    addCompound() - Method in interface de.tr7zw.nbtapi.wrapper.ProxyList
    @@ -589,6 +593,16 @@

    G

     
    getClazz() - Method in enum de.tr7zw.nbtapi.utils.nmsmappings.ClassWrapper
     
    +
    getComponents(ItemStack, Consumer<ReadableNBT>) - Static method in class de.tr7zw.nbtapi.NBT
    +
    +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    +
    +
    getComponents(ItemStack, Function<ReadableNBT, T>) - Static method in class de.tr7zw.nbtapi.NBT
    +
    +
    It takes an ItemStack and a Consumer<ReadWriteNBT>, and then applies + the Consumer to the ItemStacks Components as NBT.
    +
    getCompound(String) - Method in interface de.tr7zw.nbtapi.iface.ReadableNBT
     
    getCompound(String) - Method in interface de.tr7zw.nbtapi.iface.ReadWriteNBT
    @@ -663,8 +677,14 @@

    G

    Get an Enum value that has been set via setEnum or setString(key, value.name()).
    +
    getFile() - Method in interface de.tr7zw.nbtapi.iface.NBTFileHandle
    +
     
    getFile() - Method in class de.tr7zw.nbtapi.NBTFile
     
    +
    getFileHandle(File) - Static method in class de.tr7zw.nbtapi.NBT
    +
    +
    Creates a NBTFileHandle that uses @param file to store its data.
    +
    getFloat(String) - Method in interface de.tr7zw.nbtapi.iface.ReadableNBT
    Returns the value of the given key as a Float, or 0 if the key does not @@ -878,9 +898,9 @@

    G

    getPersistentData(BlockState, Function<ReadableNBT, T>) - Static method in class de.tr7zw.nbtapi.NBT
    -
    It takes a block entity and a function that takes a ReadableNBT and returns - a generic type T, and returns the result of the function, applied to the - block entities persistent data container
    +
    It takes a block entity and a function that takes a ReadableNBT and returns a + generic type T, and returns the result of the function, applied to the block + entities persistent data container
    getPersistentDataContainer() - Method in class de.tr7zw.nbtapi.NBTChunk
    @@ -1028,7 +1048,7 @@

    H

    hasKey(String) - Method in class de.tr7zw.nbtapi.NBTCompound
    Deprecated. -
    Use hasTag(String) instead
    +
    hasKills() - Method in interface de.tr7zw.nbtapi.plugin.tests.proxy.SimpleProxyTest.TestInterface
    @@ -1471,19 +1491,25 @@

    N

    NBTContainer() - Constructor for class de.tr7zw.nbtapi.NBTContainer
    -
    Creates an empty, standalone NBTCompound
    +
    Deprecated.
    NBTContainer(Object) - Constructor for class de.tr7zw.nbtapi.NBTContainer
    -
    Takes in any NMS Compound to wrap it
    +
    Deprecated. +
    Use NBT.wrapNMSTag
    +
    NBTContainer(InputStream) - Constructor for class de.tr7zw.nbtapi.NBTContainer
    -
    Reads in a NBT InputStream
    +
    Deprecated. +
    Use NBT.readNBT
    +
    NBTContainer(String) - Constructor for class de.tr7zw.nbtapi.NBTContainer
    -
    Parses in a NBT String to a standalone NBTCompound.
    +
    Deprecated. +
    Use NBT.parseNBT
    +
    NBTDoubleList - Class in de.tr7zw.nbtapi
    @@ -1507,8 +1533,12 @@

    N

    NBTFile(File) - Constructor for class de.tr7zw.nbtapi.NBTFile
    -
    Creates a NBTFile that uses @param file to store its data.
    +
    Deprecated. +
    Use NBT.getFileHandle(file)
    +
    +
    NBTFileHandle - Interface in de.tr7zw.nbtapi.iface
    +
     
    NBTFileTest - Class in de.tr7zw.nbtapi.plugin.tests
     
    NBTFileTest() - Constructor for class de.tr7zw.nbtapi.plugin.tests.NBTFileTest
    @@ -1684,16 +1714,26 @@

    R

    ReadableNBTList<T> - Interface in de.tr7zw.nbtapi.iface
     
    -
    readFrom(File) - Static method in class de.tr7zw.nbtapi.NBTFile
    +
    readFile(File) - Static method in class de.tr7zw.nbtapi.NBT
    Reads NBT data from the provided file.
    +
    readFrom(File) - Static method in class de.tr7zw.nbtapi.NBTFile
    +
    +
    Deprecated. +
    Use NBT.readFile(file)
    +
    +
    readGameProfile(ReadableNBT) - Static method in class de.tr7zw.nbtapi.utils.GameprofileUtil
     
    readNbt(ItemStack) - Static method in class de.tr7zw.nbtapi.NBT
    Get a read only instance of the items NBT.
    +
    readNBT(InputStream) - Static method in class de.tr7zw.nbtapi.NBT
    +
    +
    Reads in an NBT stream and returns a ReadWriteNBT object
    +
    readNbt(ItemStack, Class<T>) - Static method in class de.tr7zw.nbtapi.NBT
    Create a read only proxy class for NBT, given an annotated interface.
    @@ -1837,6 +1877,10 @@

    R

    S

    +
    save() - Method in interface de.tr7zw.nbtapi.iface.NBTFileHandle
    +
    +
    Saves the data to the file
    +
    save() - Method in class de.tr7zw.nbtapi.NBTFile
    Saves the data to the file
    @@ -1851,7 +1895,9 @@

    S

     
    saveTo(File, NBTCompound) - Static method in class de.tr7zw.nbtapi.NBTFile
    -
    Saves NBT data to the provided file.
    +
    Deprecated. +
    Use NBT.writeFile(file, nbt)
    +
    set(ReadWriteNBT, String, T) - Method in interface de.tr7zw.nbtapi.iface.NBTHandler
     
    @@ -2397,6 +2443,8 @@

    V

     
    VERSION1_21 - Static variable in class de.tr7zw.nbtapi.utils.DataFixerUtil
     
    +
    VERSION1_21_2 - Static variable in class de.tr7zw.nbtapi.utils.DataFixerUtil
    +
     
    VersionChecker - Class in de.tr7zw.nbtapi.utils
    This class uses the Spiget API to check for updates
    @@ -2409,6 +2457,10 @@

    V

    W

    +
    wrapNMSTag(Object) - Static method in class de.tr7zw.nbtapi.NBT
    +
    +
    Helper method for other developers using NMS.
    +
    writeApiNBT(NBTCompound, OutputStream) - Static method in class de.tr7zw.nbtapi.NBTReflectionUtil
    Writes a Compound to an OutputStream
    @@ -2419,6 +2471,10 @@

    W

    writeCompound(OutputStream) - Method in class de.tr7zw.nbtapi.NBTCompound
     
    +
    writeFile(File, ReadWriteNBT) - Static method in class de.tr7zw.nbtapi.NBT
    +
    +
    Saves NBT data to the provided file.
    +
    writeGameProfile(ReadWriteNBT, GameProfile) - Static method in class de.tr7zw.nbtapi.utils.GameprofileUtil
     
    writeNBT(Object, OutputStream) - Static method in class de.tr7zw.nbtapi.NBTReflectionUtil
    diff --git a/v2-plugin/index.html b/v2-plugin/index.html index e17ad28bf..d8617e787 100644 --- a/v2-plugin/index.html +++ b/v2-plugin/index.html @@ -2,7 +2,7 @@ - + item-nbt-api-plugin 2.13.3-SNAPSHOT API diff --git a/v2-plugin/overview-summary.html b/v2-plugin/overview-summary.html index e342cc04d..39ee98ded 100644 --- a/v2-plugin/overview-summary.html +++ b/v2-plugin/overview-summary.html @@ -2,10 +2,10 @@ - + Overview (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + diff --git a/v2-plugin/overview-tree.html b/v2-plugin/overview-tree.html index 19e402c7c..210b38e5d 100644 --- a/v2-plugin/overview-tree.html +++ b/v2-plugin/overview-tree.html @@ -2,10 +2,10 @@ - + Class Hierarchy (item-nbt-api-plugin 2.13.3-SNAPSHOT API) - + @@ -150,7 +150,7 @@

    Class Hierarchy