Uses of Interface
com.comphenix.protocol.wrappers.nbt.NbtList
Packages that use NbtList
-
Uses of NbtList in com.comphenix.protocol.wrappers.nbt
Methods in com.comphenix.protocol.wrappers.nbt that return NbtListModifier and TypeMethodDescriptionstatic NbtList<?>Attempt to cast this NBT tag as a list.<T> NbtList<T>Retrieve the NBT list value of an entry identified by a given key.<T> NbtList<T>NbtCompound.getListOrDefault(String key)Retrieve a NBT list value by its key, or create a new list if it doesn't exist.static <T> NbtList<T>NbtFactory.ofList(String name, Collection<? extends T> elements)Construct a NBT list of out a list of values.static <T> NbtList<T>Construct a NBT list of out an array of values.Methods in com.comphenix.protocol.wrappers.nbt with parameters of type NbtListModifier and TypeMethodDescription<T> NbtCompoundAssociate a NBT list with the given key.booleanNbtVisitor.visitEnter(NbtList<?> list)Begin visiting a list node that contains multiple child nodes of the same type.booleanNbtVisitor.visitLeave(NbtList<?> list)Stop visiting a list node. -
Uses of NbtList in com.comphenix.protocol.wrappers.nbt.io
Methods in com.comphenix.protocol.wrappers.nbt.io that return NbtListModifier and TypeMethodDescription<T> NbtList<T>NbtBinarySerializer.deserializeList(DataInput source)Load an NBT list from a stream.<T> NbtList<T>NbtConfigurationSerializer.deserializeList(org.bukkit.configuration.file.YamlConfiguration root, String nodeName)Read a NBT compound from a root configuration.<T> NbtList<T>NbtTextSerializer.deserializeList(String input)Deserialize a NBT list from a base-64 encoded string.