ListData #列表数据

Link to listdata-列表数据

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.ListData;

已实现的接口

Link to 已实现的接口

listData实现了以下接口。 That means all methods defined in these interfaces are also available in ListData

Constructor #构造函数

Link to constructor-构造函数

ZenScript
Copy
new ListData() as ListData
new ListData();
ZenScript
Copy
new ListData(list as stdlib.List<IData>) as ListData
参数类型
参数
列表
类型
stdlib.List<IData>
Result Type是否隐藏
Result Type
布尔值
是否隐藏
false
Result Type
byte
是否隐藏
false
Result Type
double
是否隐藏
false
Result Type
float
是否隐藏
false
Result Type
IData[string]
是否隐藏
false
Result Type
int
是否隐藏
false
Result Type
long
是否隐藏
false
Result Type
short
是否隐藏
false
Result Type
string
是否隐藏
false

Name: asBool

Casts this IData to a boolean.

Returns: this data as a bool
Return Type: boolean

ZenScript
Copy
// ListData.asBool() as boolean

(["Hello", "World", "!"] as IData).asBool();

Name: asByte

Casts this IData to a byte.

Returns: this data as a byte
Return Type: byte

ZenScript
Copy
// ListData.asByte() as byte

(["Hello", "World", "!"] as IData).asByte();

Name: asDouble

Casts this IData to a double.

Returns: this data as a double
Return Type: double

ZenScript
Copy
// ListData.asDouble() as double

(["Hello", "World", "!"] as IData).asDouble();

Name: asFloat

Casts this IData to a float.

Returns: this data as a float
Return Type: float

ZenScript
Copy
// ListData.asFloat() as float

(["Hello", "World", "!"] as IData).asFloat();

Name: asInt

Casts this IData to an int.

Returns: this data as an int
Return Type: int

ZenScript
Copy
// ListData.asInt() as int

(["Hello", "World", "!"] as IData).asInt();

Name: asLong

Casts this IData to a long.

Returns: this data as a long
Return Type: long

ZenScript
Copy
// ListData.asLong() as long

(["Hello", "World", "!"] as IData).asLong();

Name: asMap

Casts this IData to a map.

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

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

(["Hello", "World", "!"] as IData).asMap();

Name: asShort

Casts this IData to a short.

Returns: this data as a short
Return Type: short

ZenScript
Copy
// ListData.asShort() as short

(["Hello", "World", "!"] 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
// ListData.asString() as string

(["Hello", "World", "!"] as IData).asString();

Name: compareTo

Compares this IData to the other IData

Returns: The comparison result.
Return Type: int

ZenScript
Copy
// ListData.compareTo(other as IData) as int

(["Hello", "World", "!"] as IData).compareTo(5);
参数类型描述
参数
other
类型
IData #数据
描述
the data to be compared.

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
// ListData.getAsString() as string

(["Hello", "World", "!"] as IData).getAsString();

Name: getId

Gets the internal ID of this data.

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

ZenScript
Copy
// ListData.getId() as byte

(["Hello", "World", "!"] as IData).getId();

Name: isEmpty

Checks if this data is empty.

Returns: True if empty.
Return Type: boolean

ZenScript
Copy
// ListData.isEmpty() as boolean

(["Hello", "World", "!"] 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
// ListData.map(operation as Function<IData,IData>) as IData

(["Hello", "World", "!"] as IData).map((data) => 3);
参数类型描述
参数
operation
类型
Function<IData,IData>
描述
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
ListData.merge(other as IData) as IData
参数类型描述
参数
other
类型
IData #数据
描述
the data to merge

Name: remove

Removes the stored data at the given key.

ZenScript
Copy
// ListData.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
Copy
ListData.setAt(name as string, data as IData?)
参数类型描述
参数
name(名称)
类型
string
描述
The key to store the data at
参数
data
类型
IData?
描述
The data to store.

Name: AND

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

ZenScript
Copy
myListData & other as IData
(["Hello", "World", "!"] as IData) & 2

Name: CAT

Concatenates the given IData to this IData.

ZenScript
Copy
myListData ~ other as IData
(["Hello", "World", "!"] as IData) ~ 2

Name: COMPARE

Compares this IData to the other IData

ZenScript
Copy
myListData < other as IData
(["Hello", "World", "!"] as IData) < 5

Name: DIV

Divides the given IData from this IData.

ZenScript
Copy
myListData / other as IData
(["Hello", "World", "!"] as IData) / 2

Name: INDEXGET

Gets the data at the given key.

ZenScript
Copy
[myListData]

Name: MOD

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

ZenScript
Copy
myListData % other as IData
(["Hello", "World", "!"] as IData) % 2

Name: MUL

Multiplies the given IData to this IData.

ZenScript
Copy
myListData * other as IData
(["Hello", "World", "!"] as IData) * 2

Name: NEG

Negates this IData.

ZenScript
Copy
-myListData
-(["Hello", "World", "!"] as IData)

Name: NOT

Applies a NOT (!) operation to this IData.

ZenScript
Copy
!myListData
!true

Name: OR

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

ZenScript
Copy
myListData | other as IData
(["Hello", "World", "!"] as IData) | 2

Name: SHL

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

ZenScript
Copy
myListData << other as IData
(["Hello", "World", "!"] as IData) << 2

Name: SHR

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

ZenScript
Copy
myListData >> other as IData
(["Hello", "World", "!"] as IData) >> 2

Name: SUB

Subtracts the given IData from this IData.

ZenScript
Copy
myListData - other as IData
(["Hello", "World", "!"] as IData) - 2

Name: XOR

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

ZenScript
Copy
myListData ^ other as IData
(["Hello", "World", "!"] as IData) ^ 2
名称类型可获得可设置描述
名称
isEmpty #是否为空
类型
布尔值
可获得
true
可设置
false
描述
Checks if this data is empty.