IData
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.
Implemented Interfaces
IData implements the following interfaces. That means all methods defined in these interfaces are also available in IData
Static Methods
Creates a collection of the given IData members.
This attempts to give the most accurate type for the given members, for example, if all the members are bytes, then it returns a ByteArrayData.
However if the types are mixed or do not have a *ArrayData version, then a ListData is returned.
Returns: A list of the given members.
Return Type: IData
Parameter | Type | Description |
---|---|---|
Parameter members | Type IData[] | Description The members to put in the list. |
Casters
Result Type | Is Implicit |
---|---|
Result Type boolean | Is Implicit false |
Result Type byte | 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 int[] | Is Implicit false |
Result Type long | Is Implicit false |
Result Type long[] | Is Implicit false |
Result Type short | Is Implicit false |
Result Type stdlib.List<IData> | 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
Casts this IData to a byte.
Returns: this data as a byte
Return Type: byte
Casts this IData to a byte array.
Returns: this data as a byte array
Return Type: byte[]
Casts this IData to a double.
Returns: this data as a double
Return Type: double
Casts this IData to a float.
Returns: this data as a float
Return Type: float
Casts this IData to an int.
Returns: this data as an int
Return Type: int
Casts this IData to an int array.
Returns: this data as an int array
Return Type: int[]
Casts this IData to a list.
Returns: this data as a list
Return Type: stdlib.List<IData>
Casts this IData to a long.
Returns: this data as a long
Return Type: long
Casts this IData to a long array.
Returns: this data as a long array
Return Type: long[]
Casts this IData to a map.
Returns: this data as a map
Return Type: IData[string]
Casts this IData to a short.
Returns: this data as a short
Return Type: short
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
Compares this IData to the other IData
Returns: The comparison result.
Return Type: int
Parameter | Type | Description |
---|---|---|
Parameter other | Type IData | Description the data to be compared. |
Return Type: IData
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
Gets the internal ID of this data.
Returns: the intenral ID of this data.
Return Type: byte
Gets the keys of this IData
Returns: The keys of this IData.
Return Type: Set<string>
Checks if this data is empty.
Returns: True if empty.
Return Type: boolean
Gets the length of this IData.
Returns: The length of this IData.
Return Type: int
Puts the given value inside this IData at the given index.
Parameter | Type | Description |
---|---|---|
Parameter index | Type string | Description The key to store the data at |
Parameter value | Type IData? | Description The data to store. |
Removes the stored data at the given index.
Parameter | Type | Description |
---|---|---|
Parameter index | Type int | Description The index to remove. |
Removes the stored data at the given key.
Parameter | Type | Description |
---|---|---|
Parameter key | Type string | Description The key to remove. |
Sets the given value inside this IData at the given index.
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.
Applies a bitwise AND (&) operation to this IData and the other IData
Concatenates the given IData to this IData.
Compares this IData to the other IData
Checks if this IData contains the other IData
For most data types, this will check equality of the data, but for map data, it will check if the other data is a string, and then check if it contains a key with that name
Divides the given IData from this IData.
Checks if this IData is equal to the other IData.
Gets the data at the given index.
Puts the given value inside this IData at the given index.
Applies a modulo operation to this IData against the other IData.
Multiplies the given IData to this IData.
Negates this IData.
Applies a NOT (!) operation to this IData.
Applies a bitwise OR (|) operation to this IData and the other IData
Applies a SHL (<<) operation to this data by the other data
Applies a SHR (>>) operation to this data by the other data
Subtracts the given IData from this IData.
Applies a bitwise XOR (^) operation to this IData and the other IData
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 |
Name length | Type int | Has Getter true | Has Setter false | Description Gets the length of this IData. |