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
Copy
import crafttweaker.api.data.ByteArrayData;

Interfacce Implementate

Link to interfacce-implementate

ByteArrayData implements the following interfaces. That means all methods defined in these interfaces are also available in ByteArrayData

ZenScript
Copy
new ByteArrayData(internal as byte[]) as ByteArrayData
ParametroTipo
Parametro
internal
Tipo
byte[]
Result TypeImplicito
Result Type
boolean
Implicito
no
Result Type
byte
Implicito
no
Result Type
double
Implicito
no
Result Type
float
Implicito
no
Result Type
IData[string]
Implicito
no
Result Type
int
Implicito
no
Result Type
long
Implicito
no
Result Type
short
Implicito
no
Result Type
string
Implicito
no

Name: add

Adds the given IData to this IData.

Returns: A new IData after adding the other data.
Return Type: IData

ZenScript
Copy
// ByteArrayData.add(other as IData) as IData

([4, 1, 2] as IData).add(2);
ParametroTipoDescrizione
Parametro
other
Tipo
IData
Descrizione
the other data to add.

Name: asBool

Casts this IData to a boolean.

Returns: this data as a bool
Return Type: boolean

ZenScript
Copy
// ByteArrayData.asBool() as boolean

([4, 1, 2] as IData).asBool();

Name: asByte

Casts this IData to a byte.

Returns: this data as a byte
Return Type: byte

ZenScript
Copy
// ByteArrayData.asByte() as byte

([4, 1, 2] as IData).asByte();

Name: asDouble

Casts this IData to a double.

Returns: this data as a double
Return Type: double

ZenScript
Copy
// ByteArrayData.asDouble() as double

([4, 1, 2] as IData).asDouble();

Name: asFloat

Casts this IData to a float.

Returns: this data as a float
Return Type: float

ZenScript
Copy
// ByteArrayData.asFloat() as float

([4, 1, 2] as IData).asFloat();

Name: asInt

Casts this IData to an int.

Returns: this data as an int
Return Type: int

ZenScript
Copy
// ByteArrayData.asInt() as int

([4, 1, 2] as IData).asInt();

Name: asLong

Casts this IData to a long.

Returns: this data as a long
Return Type: long

ZenScript
Copy
// ByteArrayData.asLong() as long

([4, 1, 2] as IData).asLong();

Name: asMap

Casts this IData to a map.

Returns: this data as a map
Return Type: IData[string]

ZenScript
Copy
// ByteArrayData.asMap() as IData[string]

([4, 1, 2] as IData).asMap();

Name: asShort

Casts this IData to a short.

Returns: this data as a short
Return Type: short

ZenScript
Copy
// ByteArrayData.asShort() as short

([4, 1, 2] as IData).asShort();

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
// ByteArrayData.asString() as string

([4, 1, 2] 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
// ByteArrayData.getAsString() as string

([4, 1, 2] as IData).getAsString();

Name: getId

Gets the internal ID of this data.

Returns: the intenral ID of this data.
Return Type: byte

ZenScript
Copy
// ByteArrayData.getId() as byte

([4, 1, 2] as IData).getId();

Name: getKeys

Gets the keys of this IData

Returns: The keys of this IData.
Return Type: Set<string>

ZenScript
Copy
// ByteArrayData.getKeys() as Set<string>

([4, 1, 2] as IData).getKeys();

Name: isEmpty

Checks if this data is empty.

Returns: True if empty.
Return Type: boolean

ZenScript
Copy
// ByteArrayData.isEmpty() as boolean

([4, 1, 2] as IData).isEmpty();

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
// ByteArrayData.map(operation as Function<IData,IData>) as IData

([4, 1, 2] as IData).map((data) => 3);
ParametroTipoDescrizione
Parametro
operation
Tipo
Function<IData,IData>
Descrizione
The operation to apply to this IData

Name: merge

Merges the given data with this data.

Returns: the result of merging the datas.
Return Type: IData

ZenScript
Copy
ByteArrayData.merge(other as IData) as IData
ParametroTipoDescrizione
Parametro
other
Tipo
IData
Descrizione
the data to merge

Name: remove

Removes the stored data at the given key.

ZenScript
Copy
// ByteArrayData.remove(key as string)

{key: "value"} as IData.remove("key");
ParametroTipoDescrizione
Parametro
key
Tipo
string
Descrizione
The key to remove.

Name: setAt

Sets the given value inside this IData at the given index.

ZenScript
Copy
ByteArrayData.setAt(name as string, data as IData?)
ParametroTipoDescrizione
Parametro
nome
Tipo
string
Descrizione
The key to store the data at
Parametro
data
Tipo
IData?
Descrizione
The data to store.

Name: ADD

Adds the given IData to this IData.

ZenScript
Copy
myByteArrayData + other as IData
([4, 1, 2] as IData) + 2

Name: AND

Applies a bitwise AND (&) operation to this IData and the other IData

ZenScript
Copy
myByteArrayData & other as IData
([4, 1, 2] as IData) & 2

Name: CAT

Concatenates the given IData to this IData.

ZenScript
Copy
myByteArrayData ~ other as IData
([4, 1, 2] as IData) ~ 2

Name: DIV

Divides the given IData from this IData.

ZenScript
Copy
myByteArrayData / other as IData
([4, 1, 2] as IData) / 2

Name: INDEXGET

Gets the data at the given key.

ZenScript
Copy
[myByteArrayData]

Name: MOD

Applies a modulo operation to this IData against the other IData.

ZenScript
Copy
myByteArrayData % other as IData
([4, 1, 2] as IData) % 2

Name: MUL

Multiplies the given IData to this IData.

ZenScript
Copy
myByteArrayData * other as IData
([4, 1, 2] as IData) * 2

Name: NEG

Negates this IData.

ZenScript
Copy
-myByteArrayData
-([4, 1, 2] as IData)

Name: NOT

Applies a NOT (!) operation to this IData.

ZenScript
Copy
!myByteArrayData
!true

Name: OR

Applies a bitwise OR (|) operation to this IData and the other IData

ZenScript
Copy
myByteArrayData | other as IData
([4, 1, 2] as IData) | 2

Name: SHL

Applies a SHL (<<) operation to this data by the other data

ZenScript
Copy
myByteArrayData << other as IData
([4, 1, 2] as IData) << 2

Name: SHR

Applies a SHR (>>) operation to this data by the other data

ZenScript
Copy
myByteArrayData >> other as IData
([4, 1, 2] as IData) >> 2

Name: SUB

Subtracts the given IData from this IData.

ZenScript
Copy
myByteArrayData - other as IData
([4, 1, 2] as IData) - 2

Name: XOR

Applies a bitwise XOR (^) operation to this IData and the other IData

ZenScript
Copy
myByteArrayData ^ other as IData
([4, 1, 2] as IData) ^ 2
NomeTipoHa GetterHa SetterDescrizione
Nome
isEmpty
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
Checks if this data is empty.
Nome
keys
Tipo
Set<string>
Ha Getter
Ha Setter
no
Descrizione
Gets the keys of this IData