Uses of Interface
de.pauleff.jnbt.api.IListTag
Packages that use IListTag
-
Uses of IListTag in de.pauleff.jnbt.api
Methods in de.pauleff.jnbt.api that return IListTagModifier and TypeMethodDescriptionAdds a byte element to this list.IListTag.addCompound(String name) Adds an empty compound element to this list.Adds a double-precision floating point element to this list.Adds a float element to this list.Adds an integer element to this list.Adds a long element to this list.Adds a short element to this list.Adds a string element to this list.IListTag.clear()Removes all elements from this list.static IListTagNBTFactory.createList(int listTypeID) Creates an empty list tag for the specified element type.static IListTagNBTFactory.createList(String name, int listTypeID) Creates a named list tag for the specified element type.Retrieves a list tag by name without casting.static IListTagNBTFactory.parseListFromSNBT(String snbt) Parses SNBT text into a list tag.Removes the first element that matches the given tag.IListTag.removeAt(int index) Removes an element at the specified index.Updates an element at the specified index with a new byte value.IListTag.setCompound(int index, String name) Updates an element at the specified index with a new compound.Updates an element at the specified index with a new double value.Updates an element at the specified index with a new float value.Updates an element at the specified index with a new integer value.Updates an element at the specified index with a new long value.Updates an element at the specified index with a new short value.Updates an element at the specified index with a new string value.Replaces an element at the specified index with a new tag. -
Uses of IListTag in de.pauleff.jnbt.builder
Methods in de.pauleff.jnbt.builder that return IListTag -
Uses of IListTag in de.pauleff.jnbt.core
Classes in de.pauleff.jnbt.core that implement IListTagModifier and TypeClassDescriptionclassRepresents an NBT list tag - a homogeneous collection containing multiple tags of the same type, accessed by index rather than name.Methods in de.pauleff.jnbt.core that return IListTagModifier and TypeMethodDescriptionAdds a byte element to this list with fluent chaining.Tag_List.addCompound(String name) Adds a compound element to this list with fluent chaining.Adds a double-precision element to this list with fluent chaining.Adds a float element to this list with fluent chaining.Adds an integer element to this list with fluent chaining.Adds a long element to this list with fluent chaining.Adds a short element to this list with fluent chaining.Adds a string element to this list with fluent chaining.Tag_List.clear()Tag_List.removeAt(int index) Tag_List.setCompound(int index, String name)