IntData
Link to intdata
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.data.IntData;
Implemented Interfaces
Link to implemented-interfaces
IntData implements the following interfaces. That means all methods defined in these interfaces are also available in IntData
Constructors
Link to constructors
No Description Provided
ZenScript Copynew IntData(internal as int) as IntData
Parameter | Type | Description |
---|---|---|
Parameter internal | Type int | Description No Description Provided |
Casters
Link to casters
Result type | Is Implicit |
---|---|
Result type boolean | Is Implicit false |
Result type byte | Is Implicit false |
Result type double | Is Implicit false |
Result type float | Is Implicit false |
Result type ICollectionData | Is Implicit false |
Result type int | Is Implicit false |
Result type INumberData | Is Implicit false |
Result type long | Is Implicit false |
Result type short | Is Implicit false |
Methods
Link to methods
Name: asBoolean
Return Type: boolean
ZenScript Copy// IntData.asBoolean() as boolean
8192.asBoolean();
Name: asCollection
Return Type: ICollectionData
ZenScript Copy// IntData.asCollection() as ICollectionData
8192.asCollection();
Name: asNumber
Return Type: INumberData
ZenScript Copy// IntData.asNumber() as INumberData
8192.asNumber();
Name: asString
Gets the String representation of this IData
Returns: String that represents this IData (value and type).
Return Type: string
ZenScript Copy// IntData.asString() as string
8192.asString();
Name: getId
Gets the ID of the internal NBT tag.
Used to determine what NBT type is stored (in a list for example)
Returns: ID of the NBT tag that this data represents.
Return Type: byte
ZenScript Copy// IntData.getId() as byte
8192.getId();
Name: getString
Gets the String representation of the internal INBT tag
Returns: String that represents the internal INBT of this IData.
Return Type: string
ZenScript Copy// IntData.getString() as string
8192.getString();