DoubleData #双精度数据

Link to doubledata-双精度数据

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

已实现的接口

Link to 已实现的接口

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

Constructor #构造函数

Link to constructor-构造函数

ZenScript
Copy
new DoubleData(internal as double) as DoubleData
参数类型
参数
internal
类型
double
Result Type是否隐藏
Result Type
布尔值
是否隐藏
false
Result Type
byte
是否隐藏
false
Result Type
double
是否隐藏
false
Result Type
float
是否隐藏
false
Result Type
ICollectionData #所收集数据
是否隐藏
false
Result Type
int
是否隐藏
false
Result Type
INumberData #编号数据
是否隐藏
false
Result Type
long
是否隐藏
false
Result Type
short
是否隐藏
false

Name: asBoolean

Return Type: boolean

ZenScript
Copy
// DoubleData.asBoolean() as boolean

3.25.asBoolean();

Name: asCollection

Return Type: ICollectionData

ZenScript
Copy
// DoubleData.asCollection() as ICollectionData

3.25.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
// DoubleData.asList() as stdlib.List<IData>

3.25.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
// DoubleData.asMap() as IData[string]

3.25.asMap();

Name: asNumber

Return Type: INumberData

ZenScript
Copy
// DoubleData.asNumber() as INumberData

3.25.asNumber();

Name: asString

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

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

ZenScript
Copy
// DoubleData.asString() as string

3.25.asString();

Name: getByte

Gets the value of this IData as a byte

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

ZenScript
Copy
// DoubleData.getByte() as byte

3.25.getByte();

Name: getDouble

Gets the value of this IData as a double

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

ZenScript
Copy
// DoubleData.getDouble() as double

3.25.getDouble();

Name: getFloat

Gets the value of this IData as a float

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

ZenScript
Copy
// DoubleData.getFloat() as float

3.25.getFloat();

Name: getId

获取内部NBT标签的 ID。

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

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

ZenScript
Copy
// DoubleData.getId() as byte

3.25.getId();

Name: getInt

Gets the value of this IData as an int

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

ZenScript
Copy
// DoubleData.getInt() as int

3.25.getInt();

Name: getLong

Gets the value of this IData as a long

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

ZenScript
Copy
// DoubleData.getLong() as long

3.25.getLong();

Name: getShort

Gets the value of this IData as a short

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

ZenScript
Copy
// DoubleData.getShort() as short

3.25.getShort();

Name: getString

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

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

ZenScript
Copy
// DoubleData.getString() as string

3.25.getString();