LongData
Link to longdata
Импорт класса
Link to импорт-класса
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.LongData;
Implemented Interfaces
Link to implemented-interfaces
LongData implements the following interfaces. That means all methods defined in these interfaces are also available in LongData
Constructors
Link to constructors
ZenScript Copynew LongData(internal as long) as LongData
Параметр | Тип |
---|---|
Параметр internal | Тип long |
Утилиты
Link to утилиты
Result Type | Является неявным |
---|---|
Result Type byte[] | Является неявным false |
Result Type IData[string] | Является неявным false |
Result Type int[] | Является неявным false |
Result Type long[] | Является неявным false |
Result Type stdlib.List<IData> | Является неявным false |
Result Type string | Является неявным false |
Методы
Link to методы
Name: asByteArray
Casts this IData to a byte array.
Returns: this data as a byte array
Return Type: byte[]
ZenScript Copy// LongData.asByteArray() as byte[]
(800000000L as IData).asByteArray();
Name: asIntArray
Casts this IData to an int array.
Returns: this data as an int array
Return Type: int[]
ZenScript Copy// LongData.asIntArray() as int[]
(800000000L as IData).asIntArray();
Name: asList
Casts this IData to a list.
Returns: this data as a list
Return Type: stdlib.List<IData>
ZenScript Copy// LongData.asList() as stdlib.List<IData>
(800000000L as IData).asList();
Name: asLongArray
Casts this IData to a long array.
Returns: this data as a long array
Return Type: long[]
ZenScript Copy// LongData.asLongArray() as long[]
(800000000L as IData).asLongArray();
Name: asMap
Casts this IData to a map.
Returns: this data as a map
Return Type: IData[string]
ZenScript Copy// LongData.asMap() as IData[string]
(800000000L as IData).asMap();
Name: asString
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
ZenScript Copy// LongData.asString() as string
(800000000L as IData).asString();
Name: getAsString
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
ZenScript Copy// LongData.getAsString() as string
(800000000L as IData).getAsString();
Name: getId
Gets the internal ID of this data.
Returns: the intenral ID of this data.
Return Type: byte
ZenScript Copy// LongData.getId() as byte
(800000000L as IData).getId();
Name: getKeys
Gets the keys of this IData
Returns: The keys of this IData.
Return Type: Set<string>
ZenScript Copy// LongData.getKeys() as Set<string>
(800000000L as IData).getKeys();
Name: isEmpty
Checks if this data is empty.
Returns: True if empty.
Return Type: boolean
ZenScript Copy// LongData.isEmpty() as boolean
(800000000L as IData).isEmpty();
Name: length
Gets the length of this IData.
Returns: The length of this IData.
Return Type: int
ZenScript Copy// LongData.length() as int
(800000000L as IData).length();
Name: map
Maps this IData to another IData based on the given operation.
Returns: A new IData from the operation
Return Type: IData
ZenScript Copy// LongData.map(operation as Function<IData,IData>) as IData
(800000000L as IData).map((data) => 3);
Параметр | Тип | Описание |
---|---|---|
Параметр operation | Тип Function<IData,IData> | Описание The operation to apply to this IData |
Name: put
Puts the given value inside this IData at the given index.
ZenScript Copy// LongData.put(index as string, value as IData?)
new MapData().put("key", "value");
Параметр | Тип | Описание |
---|---|---|
Параметр index | Тип string | Описание The key to store the data at |
Параметр value | Тип IData? | Описание The data to store. |
Name: remove
Removes the stored data at the given index.
ZenScript Copy// LongData.remove(index as int)
[1, 2, 3] as IData.remove(0);
Параметр | Тип | Описание |
---|---|---|
Параметр index | Тип int | Описание The index to remove. |
Name: remove
Removes the stored data at the given key.
ZenScript Copy// LongData.remove(key as string)
{key: "value"} as IData.remove("key");
Параметр | Тип | Описание |
---|---|---|
Параметр key | Тип string | Описание The key to remove. |
Name: setAt
Sets the given value inside this IData at the given index.
ZenScript CopyLongData.setAt(name as string, data as IData?)
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип string | Описание The key to store the data at |
Параметр data | Тип IData? | Описание The data to store. |
Операторы
Link to операторы
Name: CAT
Concatenates the given IData to this IData.
ZenScript CopymyLongData ~ other as IData
(800000000L as IData) ~ 2
Name: INDEXGET
Gets the data at the given index.
ZenScript Copy[myLongData]
[[1, 2, 3] as IData]
Name: INDEXSET
Puts the given value inside this IData at the given index.
ZenScript Copy[myLongData] = index as string
[new MapData()] = "key"
Name: NOT
Applies a NOT (!) operation to this IData.
ZenScript Copy!myLongData
!true
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter | Описание |
---|---|---|---|---|
Название isEmpty | Тип boolean | Имеет Getter true | Имеет Setter false | Описание Checks if this data is empty. |
Название keys | Тип Set<string> | Имеет Getter true | Имеет Setter false | Описание Gets the keys of this IData |
Название length | Тип int | Имеет Getter true | Имеет Setter false | Описание Gets the length of this IData. |