ListData
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
import crafttweaker.api.data.ListData;
Implemented Interfaces
ListData implements the following interfaces. That means all methods defined in these interfaces are also available in ListData
Constructors
No Description Provided
new ListData() as ListData
new ListData();
No Description Provided
new ListData(list as stdlib.List<IData>) as ListData
Parameter | Type | Description |
---|
list | stdlib.List<IData> | No Description Provided |
Casters
Methods
Return Type: ICollectionData
ListData.asCollection() as ICollectionData
["Hello", "World", "!"].asCollection();
Gets a Map<String, IData> representation of this IData, returns null on anything but MapData.
Return Type: IData[string]
ListData.asMap() as IData[string]
["Hello", "World", "!"].asMap();
Return Type: INumberData
ListData.asNumber() as INumberData
["Hello", "World", "!"].asNumber();
Gets the ID of the internal NBT tag.
Used to determine what NBT type is stored (in a list for example)
Return Type: byte
ListData.getId() as byte
["Hello", "World", "!"].getId();
Gets the String representation of the internal INBT tag
Return Type: string
ListData.getString() as string
["Hello", "World", "!"].getString();