ShortData
Link to shortdata
Importare la Classe
Link to importare-la-classe
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.ShortData;
Interfacce Implementate
Link to interfacce-implementate
ShortData implements the following interfaces. That means all methods defined in these interfaces are also available in ShortData
Constructors
Link to constructors
ZenScript Copynew ShortData(internal as short) as ShortData
Parametro | Tipo |
---|---|
Parametro internal | Tipo short |
Caster
Link to caster
Result Type | Implicito |
---|---|
Result Type byte[] | Implicito no |
Result Type IData[string] | Implicito no |
Result Type int[] | Implicito no |
Result Type long[] | Implicito no |
Result Type stdlib.List<IData> | Implicito no |
Result Type string | Implicito no |
Metodi
Link to metodi
Name: asByteArray
Casts this IData to a byte array.
Returns: this data as a byte array
Return Type: byte[]
ZenScript Copy// ShortData.asByteArray() as byte[]
(1058 as IData).asByteArray();
Name: asIntArray
Casts this IData to an int array.
Returns: this data as an int array
Return Type: int[]
ZenScript Copy// ShortData.asIntArray() as int[]
(1058 as IData).asIntArray();
Name: asList
Casts this IData to a list.
Returns: this data as a list
Return Type: stdlib.List<IData>
ZenScript Copy// ShortData.asList() as stdlib.List<IData>
(1058 as IData).asList();
Name: asLongArray
Casts this IData to a long array.
Returns: this data as a long array
Return Type: long[]
ZenScript Copy// ShortData.asLongArray() as long[]
(1058 as IData).asLongArray();
Name: asMap
Casts this IData to a map.
Returns: this data as a map
Return Type: IData[string]
ZenScript Copy// ShortData.asMap() as IData[string]
(1058 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// ShortData.asString() as string
(1058 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// ShortData.getAsString() as string
(1058 as IData).getAsString();
Name: getId
Gets the internal ID of this data.
Returns: the intenral ID of this data.
Return Type: byte
ZenScript Copy// ShortData.getId() as byte
(1058 as IData).getId();
Name: getKeys
Gets the keys of this IData
Returns: The keys of this IData.
Return Type: Set<string>
ZenScript Copy// ShortData.getKeys() as Set<string>
(1058 as IData).getKeys();
Name: isEmpty
Checks if this data is empty.
Returns: True if empty.
Return Type: boolean
ZenScript Copy// ShortData.isEmpty() as boolean
(1058 as IData).isEmpty();
Name: length
Gets the length of this IData.
Returns: The length of this IData.
Return Type: int
ZenScript Copy// ShortData.length() as int
(1058 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// ShortData.map(operation as Function<IData,IData>) as IData
(1058 as IData).map((data) => 3);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro operation | Tipo Function<IData,IData> | Descrizione The operation to apply to this IData |
Name: put
Puts the given value inside this IData at the given index.
ZenScript Copy// ShortData.put(index as string, value as IData?)
new MapData().put("key", "value");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro indice | Tipo string | Descrizione The key to store the data at |
Parametro valore | Tipo IData? | Descrizione The data to store. |
Name: remove
Removes the stored data at the given index.
ZenScript Copy// ShortData.remove(index as int)
[1, 2, 3] as IData.remove(0);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro indice | Tipo int | Descrizione The index to remove. |
Name: remove
Removes the stored data at the given key.
ZenScript Copy// ShortData.remove(key as string)
{key: "value"} as IData.remove("key");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro key | Tipo string | Descrizione The key to remove. |
Name: setAt
Sets the given value inside this IData at the given index.
ZenScript CopyShortData.setAt(name as string, data as IData?)
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione The key to store the data at |
Parametro data | Tipo IData? | Descrizione The data to store. |
Operators
Link to operators
Name: CAT
Concatenates the given IData to this IData.
ZenScript CopymyShortData ~ other as IData
(1058 as IData) ~ 2
Name: INDEXGET
Gets the data at the given index.
ZenScript Copy[myShortData]
[[1, 2, 3] as IData]
Name: INDEXSET
Puts the given value inside this IData at the given index.
ZenScript Copy[myShortData] = index as string
[new MapData()] = "key"
Name: NOT
Applies a NOT (!) operation to this IData.
ZenScript Copy!myShortData
!true
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome isEmpty | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione Checks if this data is empty. |
Nome keys | Tipo Set<string> | Ha Getter sì | Ha Setter no | Descrizione Gets the keys of this IData |
Nome length | Tipo int | Ha Getter sì | Ha Setter no | Descrizione Gets the length of this IData. |