IntData
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.IntData;
Implemented Interfaces
IntData implements the following interfaces. That means all methods defined in these interfaces are also available in IntData
Constructors
No Description Provided
new IntData(internal as int) as IntData
Parameter | Type | Description |
---|
internal | int | No Description Provided |
Casters
Methods
Return Type: ICollectionData
IntData.asCollection() as ICollectionData
8192.asCollection();
Gets a List representation of this IData, returns null on anything but ListData.
Return Type: stdlib.List<IData>
IntData.asList() as stdlib.List<IData>
8192.asList();
Gets a Map<String, IData> representation of this IData, returns null on anything but MapData.
Return Type: IData[string]
IntData.asMap() as IData[string]
8192.asMap();
Return Type: INumberData
IntData.asNumber() as INumberData
8192.asNumber();
Gets the value of this IData as a byte
Return Type: byte
IntData.getByte() as byte
8192.getByte();
Gets the value of this IData as a double
Return Type: double
IntData.getDouble() as double
8192.getDouble();
Gets the value of this IData as a float
Return Type: float
IntData.getFloat() as float
8192.getFloat();
Gets the ID of the internal NBT tag.
Used to determine what NBT type is stored (in a list for example)
Return Type: byte
IntData.getId() as byte
8192.getId();
Gets the value of this IData as an int
Return Type: int
IntData.getInt() as int
8192.getInt();
Gets the value of this IData as a long
Return Type: long
IntData.getLong() as long
8192.getLong();
Gets the value of this IData as a short
Return Type: short
IntData.getShort() as short
8192.getShort();
Gets the String representation of the internal INBT tag
Return Type: string
IntData.getString() as string
8192.getString();