Home Commands Examples Getting Started With Scripts Global Keywords

BoolData

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.

Importing the class

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.

script.zs
import crafttweaker.api.data.BoolData;

Implemented Interfaces

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

Constructors

script.zs
new BoolData(internalValue as boolean) as BoolData
ParameterType
Parameter
internalValue
Type
boolean

Casters

Result TypeIs Implicit
Result Type
boolean
Is Implicit
true
Result Type
byte[]
Is Implicit
false
Result Type
ByteData
Is Implicit
false
Result Type
IData[string]
Is Implicit
false
Result Type
int[]
Is Implicit
false
Result Type
long[]
Is Implicit
false
Result Type
stdlib.List<IData>
Is Implicit
false
Result Type
string
Is Implicit
false

Methods

Adds the given IData to this IData.

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

script.zs
// BoolData.add(other as IData) as IData
(true as IData).add(2);
ParameterTypeDescription
Parameter
other
Type
IData
Description
the other data to add.

Casts this IData to a byte array.

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

script.zs
// BoolData.asByteArray() as byte[]
(true as IData).asByteArray();

Casts this IData to an int array.

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

script.zs
// BoolData.asIntArray() as int[]
(true as IData).asIntArray();

Casts this IData to a list.

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

script.zs
// BoolData.asList() as stdlib.List<IData>
(true as IData).asList();

Casts this IData to a long array.

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

script.zs
// BoolData.asLongArray() as long[]
(true as IData).asLongArray();

Casts this IData to a map.

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

script.zs
// BoolData.asMap() as IData[string]
(true as IData).asMap();

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

script.zs
// BoolData.asString() as string
(true as IData).asString();

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

script.zs
// BoolData.getAsString() as string
(true as IData).getAsString();

Return Type: ByteData

script.zs
// BoolData.getByteData() as ByteData
(true as IData).getByteData();

Gets the internal ID of this data.

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

script.zs
// BoolData.getId() as byte
(true as IData).getId();

Gets the keys of this IData

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

script.zs
// BoolData.getKeys() as Set<string>
(true as IData).getKeys();

Checks if this data is empty.

Returns: True if empty.
Return Type: boolean

script.zs
// BoolData.isEmpty() as boolean
(true as IData).isEmpty();

Gets the length of this IData.

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

script.zs
// BoolData.length() as int
(true as IData).length();

Maps this IData to another IData based on the given operation.

Returns: A new IData from the operation
Return Type: IData

script.zs
// BoolData.map(operation as Function<IData,IData>) as IData
(true as IData).map((data) => 3);
ParameterTypeDescription
Parameter
operation
Type
Function<IData,IData>
Description
The operation to apply to this IData

Merges the given data with this data.

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

script.zs
BoolData.merge(other as IData) as IData
ParameterTypeDescription
Parameter
other
Type
IData
Description
the data to merge

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

script.zs
// BoolData.put(index as string, value as IData?)
new MapData().put("key", "value");
ParameterTypeDescription
Parameter
index
Type
string
Description
The key to store the data at
Parameter
value
Type
IData?
Description
The data to store.

Removes the stored data at the given index.

script.zs
// BoolData.remove(index as int)
[1, 2, 3] as IData.remove(0);
ParameterTypeDescription
Parameter
index
Type
int
Description
The index to remove.

Removes the stored data at the given key.

script.zs
// BoolData.remove(key as string)
{key: "value"} as IData.remove("key");
ParameterTypeDescription
Parameter
key
Type
string
Description
The key to remove.

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

script.zs
BoolData.setAt(name as string, data as IData?)
ParameterTypeDescription
Parameter
name
Type
string
Description
The key to store the data at
Parameter
data
Type
IData?
Description
The data to store.

Operators

Adds the given IData to this IData.

script.zs
myBoolData + other as IData
(true as IData) + 2

Concatenates the given IData to this IData.

script.zs
myBoolData ~ other as IData
(true as IData) ~ 2

Divides the given IData from this IData.

script.zs
myBoolData / other as IData
(true as IData) / 2

Gets the data at the given index.

script.zs
[myBoolData]
[[1, 2, 3] as IData]

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

script.zs
[myBoolData] = index as string
[new MapData()] = "key"

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

script.zs
myBoolData % other as IData
(true as IData) % 2

Multiplies the given IData to this IData.

script.zs
myBoolData * other as IData
(true as IData) * 2

Negates this IData.

script.zs
-myBoolData
-(true as IData)

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

script.zs
myBoolData << other as IData
(true as IData) << 2

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

script.zs
myBoolData >> other as IData
(true as IData) >> 2

Subtracts the given IData from this IData.

script.zs
myBoolData - other as IData
(true as IData) - 2

Properties

NameTypeHas GetterHas SetterDescription
Name
isEmpty
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks if this data is empty.
Name
keys
Type
Set<string>
Has Getter
true
Has Setter
false
Description
Gets the keys of this IData
Name
length
Type
int
Has Getter
true
Has Setter
false
Description
Gets the length of this IData.