INumberData #编号数据

Link to inumberdata-编号数据

Represents a Number in the form of an IData, useful for converting between types (double to int / long for example).

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

已实现的接口

Link to 已实现的接口

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

结果类型是否隐藏
结果类型
布尔值
是否隐藏
false
结果类型
byte
是否隐藏
false
结果类型
double
是否隐藏
false
结果类型
float
是否隐藏
false
结果类型
ICollectionData #所收集数据
是否隐藏
false
结果类型
int
是否隐藏
false
结果类型
INumberData #编号数据
是否隐藏
false
结果类型
long
是否隐藏
false
结果类型
short
是否隐藏
false

Name: asBoolean

Return Type: boolean

ZenScript
Copy
// INumberData.asBoolean() as boolean

1.asBoolean();

Name: asCollection

Return Type: ICollectionData

ZenScript
Copy
// INumberData.asCollection() as ICollectionData

1.asCollection();

Name: asList

获取列表 representation of this IData, returns null on anything but ListData.

Returns: null if this IData is not a list.
Return Type: stdlib.List<IData>

ZenScript
Copy
// INumberData.asList() as stdlib.List<IData>

1.asList();

Name: asMap

Gets a Map<String, IData> representation of this IData, returns null on anything but MapData.

Returns: null if this IData is not a map.
Return Type: IData[string]

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

1.asMap();

Name: asNumber

Return Type: INumberData

ZenScript
Copy
// INumberData.asNumber() as INumberData

1.asNumber();

Name: asString

获取此IData的字符串表示形式

Returns: String that represents this IData (value and type).
Return Type: string

ZenScript
Copy
// INumberData.asString() as string

1.asString();

Name: contains

Checks if this IData contains another IData, mainly used in subclasses of ICollectionData, is the same as an equals check on other IData types

Returns: true if the given IData is contained in this IData
Return Type: boolean

ZenScript
Copy
// INumberData.contains(data as IData) as boolean

1.contains("Display");
参数类型描述
参数
data
类型
IData #数据
描述
要检查是否有包含的数据

Name: getByte

Gets the value of this IData as a byte

Returns: the byte value of this IData
Return Type: byte

ZenScript
Copy
// INumberData.getByte() as byte

1.getByte();

Name: getDouble

Gets the value of this IData as a double

Returns: the double value of this IData
Return Type: double

ZenScript
Copy
// INumberData.getDouble() as double

1.getDouble();

Name: getFloat

Gets the value of this IData as a float

Returns: the float value of this IData
Return Type: float

ZenScript
Copy
// INumberData.getFloat() as float

1.getFloat();

Name: getId

获取内部NBT标签的 ID。

用来确定哪些NBT类型被存储(例如在列表中)

Returns: ID of the NBT tag that this data represents.
Return Type: byte

ZenScript
Copy
// INumberData.getId() as byte

1.getId();

Name: getInt

Gets the value of this IData as an int

Returns: the int value of this IData
Return Type: int

ZenScript
Copy
// INumberData.getInt() as int

1.getInt();

Name: getLong

Gets the value of this IData as a long

Returns: the long value of this IData
Return Type: long

ZenScript
Copy
// INumberData.getLong() as long

1.getLong();

Name: getShort

Gets the value of this IData as a short

Returns: the short value of this IData
Return Type: short

ZenScript
Copy
// INumberData.getShort() as short

1.getShort();

Name: getString

获取内部INBT标记的字符串表示形式

Returns: String that represents the internal INBT of this IData.
Return Type: string

ZenScript
Copy
// INumberData.getString() as string

1.getString();