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