Careful with BoolData: While it works for specifying boolean attributes in JSON syntax, using it in Tags will instead use a ByteData object. Reason for this is that Minecraft does not have Boolean NBT values.

Импорт класса

Link to импорт-класса

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

Implemented Interfaces

Link to implemented-interfaces

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

ZenScript
Copy
new BoolData(internalValue as boolean) as BoolData
ПараметрТип
Параметр
internalValue
Тип
boolean
Result TypeЯвляется неявным
Result Type
boolean
Является неявным
true
Result Type
byte[]
Является неявным
false
Result Type
ByteData
Является неявным
false
Result Type
IData[string]
Является неявным
false
Result Type
int[]
Является неявным
false
Result Type
long[]
Является неявным
false
Result Type
stdlib.List<IData>
Является неявным
false
Result Type
string
Является неявным
false

Name: add

Adds the given IData to this IData.

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

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

(true as IData).add(2);
ПараметрТипОписание
Параметр
other
Тип
IData
Описание
the other data to add.

Name: asByteArray

Casts this IData to a byte array.

Returns: this data as a byte array
Return Type: byte[]

ZenScript
Copy
// BoolData.asByteArray() as byte[]

(true as IData).asByteArray();

Name: asIntArray

Casts this IData to an int array.

Returns: this data as an int array
Return Type: int[]

ZenScript
Copy
// BoolData.asIntArray() as int[]

(true as IData).asIntArray();

Name: asList

Casts this IData to a list.

Returns: this data as a list
Return Type: stdlib.List<IData>

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

(true as IData).asList();

Name: asLongArray

Casts this IData to a long array.

Returns: this data as a long array
Return Type: long[]

ZenScript
Copy
// BoolData.asLongArray() as long[]

(true as IData).asLongArray();

Name: asMap

Casts this IData to a map.

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

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

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

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

(true as IData).getAsString();

Name: getByteData

Return Type: ByteData

ZenScript
Copy
// BoolData.getByteData() as ByteData

(true as IData).getByteData();

Name: getId

Gets the internal ID of this data.

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

ZenScript
Copy
// BoolData.getId() as byte

(true as IData).getId();

Name: getKeys

Gets the keys of this IData

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

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

(true as IData).getKeys();

Name: isEmpty

Checks if this data is empty.

Returns: True if empty.
Return Type: boolean

ZenScript
Copy
// BoolData.isEmpty() as boolean

(true as IData).isEmpty();

Name: length

Gets the length of this IData.

Returns: The length of this IData.
Return Type: int

ZenScript
Copy
// BoolData.length() as int

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

(true 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
BoolData.merge(other as IData) as IData
ПараметрТипОписание
Параметр
other
Тип
IData
Описание
the data to merge

Name: put

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

ZenScript
Copy
// BoolData.put(index as string, value as IData?)

new MapData().put("key", "value");
ПараметрТипОписание
Параметр
index
Тип
string
Описание
The key to store the data at
Параметр
value
Тип
IData?
Описание
The data to store.

Name: remove

Removes the stored data at the given index.

ZenScript
Copy
// BoolData.remove(index as int)

[1, 2, 3] as IData.remove(0);
ПараметрТипОписание
Параметр
index
Тип
int
Описание
The index to remove.

Name: remove

Removes the stored data at the given key.

ZenScript
Copy
// BoolData.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
BoolData.setAt(name as string, data as IData?)
ПараметрТипОписание
Параметр
name
Тип
string
Описание
The key to store the data at
Параметр
data
Тип
IData?
Описание
The data to store.

Операторы

Link to операторы

Name: ADD

Adds the given IData to this IData.

ZenScript
Copy
myBoolData + other as IData
(true as IData) + 2

Name: CAT

Concatenates the given IData to this IData.

ZenScript
Copy
myBoolData ~ other as IData
(true as IData) ~ 2

Name: DIV

Divides the given IData from this IData.

ZenScript
Copy
myBoolData / other as IData
(true as IData) / 2

Name: INDEXGET

Gets the data at the given index.

ZenScript
Copy
[myBoolData]
[[1, 2, 3] as IData]

Name: INDEXSET

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

ZenScript
Copy
[myBoolData] = index as string
[new MapData()] = "key"

Name: MOD

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

ZenScript
Copy
myBoolData % other as IData
(true as IData) % 2

Name: MUL

Multiplies the given IData to this IData.

ZenScript
Copy
myBoolData * other as IData
(true as IData) * 2

Name: NEG

Negates this IData.

ZenScript
Copy
-myBoolData
-(true as IData)

Name: SHL

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

ZenScript
Copy
myBoolData << other as IData
(true as IData) << 2

Name: SHR

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

ZenScript
Copy
myBoolData >> other as IData
(true as IData) >> 2

Name: SUB

Subtracts the given IData from this IData.

ZenScript
Copy
myBoolData - other as IData
(true as IData) - 2

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
isEmpty
Тип
boolean
Имеет Getter
true
Имеет Setter
false
Описание
Checks if this data is empty.
Название
keys
Тип
Set<string>
Имеет Getter
true
Имеет Setter
false
Описание
Gets the keys of this IData
Название
length
Тип
int
Имеет Getter
true
Имеет Setter
false
Описание
Gets the length of this IData.