LongArrayData
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.LongArrayData;
Implemented Interfaces
LongArrayData implements the following interfaces. That means all methods defined in these interfaces are also available in LongArrayData
Constructors
new LongArrayData(internal as long[]) as LongArrayData
Parameter | Type |
---|---|
Parameter internal | Type long[] |
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 IData[string] | Is Implicit false |
Result Type int | Is Implicit false |
Result Type long | Is Implicit false |
Result Type short | Is Implicit false |
Result Type string | Is Implicit false |
Methods
Casts this IData to a boolean.
Returns: this data as a bool
Return Type: boolean
// LongArrayData.asBool() as boolean
([100000, 800000, 50000] as IData).asBool();
Casts this IData to a byte.
Returns: this data as a byte
Return Type: byte
// LongArrayData.asByte() as byte
([100000, 800000, 50000] as IData).asByte();
Casts this IData to a double.
Returns: this data as a double
Return Type: double
// LongArrayData.asDouble() as double
([100000, 800000, 50000] as IData).asDouble();
Casts this IData to a float.
Returns: this data as a float
Return Type: float
// LongArrayData.asFloat() as float
([100000, 800000, 50000] as IData).asFloat();
Casts this IData to an int.
Returns: this data as an int
Return Type: int
// LongArrayData.asInt() as int
([100000, 800000, 50000] as IData).asInt();
Casts this IData to a long.
Returns: this data as a long
Return Type: long
// LongArrayData.asLong() as long
([100000, 800000, 50000] as IData).asLong();
Casts this IData to a map.
Returns: this data as a map
Return Type: IData[string]
// LongArrayData.asMap() as IData[string]
([100000, 800000, 50000] as IData).asMap();
Casts this IData to a short.
Returns: this data as a short
Return Type: short
// LongArrayData.asShort() as short
([100000, 800000, 50000] as IData).asShort();
Gets an escaped string version of this IData, quotes are included in the output
E.G println(("hello" as IData).asString())
prints "hello"
Returns: The escaped string version of this IData.
Return Type: string
// LongArrayData.asString() as string
([100000, 800000, 50000] as IData).asString();
Gets the literal string version of this IData.
E.G println(("hello" as IData).getAsString())
prints hello
Returns: The literal string version of this IData.
Return Type: string
// LongArrayData.getAsString() as string
([100000, 800000, 50000] as IData).getAsString();
Gets the internal ID of this data.
Returns: the intenral ID of this data.
Return Type: byte
// LongArrayData.getId() as byte
([100000, 800000, 50000] as IData).getId();
Gets the keys of this IData
Returns: The keys of this IData.
Return Type: Set<string>
// LongArrayData.getKeys() as Set<string>
([100000, 800000, 50000] as IData).getKeys();
Checks if this data is empty.
Returns: True if empty.
Return Type: boolean
// LongArrayData.isEmpty() as boolean
([100000, 800000, 50000] as IData).isEmpty();
Maps this IData to another IData based on the given operation.
Returns: A new IData from the operation
Return Type: IData
// LongArrayData.map(operation as Function<IData,IData>) as IData
([100000, 800000, 50000] as IData).map((data) => 3);
Parameter | Type | Description |
---|---|---|
Parameter operation | Type Function<IData,IData> | Description The operation to apply to this IData |
Removes the stored data at the given key.
// LongArrayData.remove(key as string)
{key: "value"} as IData.remove("key");
Parameter | Type | Description |
---|---|---|
Parameter key | Type string | Description The key to remove. |
Sets the given value inside this IData at the given index.
LongArrayData.setAt(name as string, data as IData?)
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The key to store the data at |
Parameter data | Type IData? | Description The data to store. |
Operators
Adds the given IData to this IData.
myLongArrayData + other as IData([100000, 800000, 50000] as IData) + 2
Applies a bitwise AND (&) operation to this IData and the other IData
myLongArrayData & other as IData([100000, 800000, 50000] as IData) & 2
Concatenates the given IData to this IData.
myLongArrayData ~ other as IData([100000, 800000, 50000] as IData) ~ 2
Divides the given IData from this IData.
myLongArrayData / other as IData([100000, 800000, 50000] as IData) / 2
Gets the data at the given key.
[myLongArrayData]
Applies a modulo operation to this IData against the other IData.
myLongArrayData % other as IData([100000, 800000, 50000] as IData) % 2
Multiplies the given IData to this IData.
myLongArrayData * other as IData([100000, 800000, 50000] as IData) * 2
Negates this IData.
-myLongArrayData-([100000, 800000, 50000] as IData)
Applies a NOT (!) operation to this IData.
!myLongArrayData!true
Applies a bitwise OR (|) operation to this IData and the other IData
myLongArrayData | other as IData([100000, 800000, 50000] as IData) | 2
Applies a SHL (<<) operation to this data by the other data
myLongArrayData << other as IData([100000, 800000, 50000] as IData) << 2
Applies a SHR (>>) operation to this data by the other data
myLongArrayData >> other as IData([100000, 800000, 50000] as IData) >> 2
Subtracts the given IData from this IData.
myLongArrayData - other as IData([100000, 800000, 50000] as IData) - 2
Applies a bitwise XOR (^) operation to this IData and the other IData
myLongArrayData ^ other as IData([100000, 800000, 50000] as IData) ^ 2
Properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name isEmpty | Type boolean | Has Getter true | Has Setter false | Description Checks if this data is empty. |
Name keys | Type Set<string> | Has Getter true | Has Setter false | Description Gets the keys of this IData |