MapData
Link to mapdata
Импорт класса
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 Copyimport crafttweaker.api.data.MapData;
Implemented Interfaces
Link to implemented-interfaces
MapData implements the following interfaces. That means all methods defined in these interfaces are also available in MapData
Constructors
Link to constructors
ZenScript Copynew MapData() as MapData
new MapData();
ZenScript Copynew MapData(map as IData[string]) as MapData
Параметр | Тип |
---|---|
Параметр map | Тип IData[string] |
Утилиты
Link to утилиты
Result Type | Является неявным |
---|---|
Result Type boolean | Является неявным false |
Result Type byte | Является неявным false |
Result Type byte[] | Является неявным false |
Result Type double | Является неявным false |
Result Type float | Является неявным false |
Result Type int | Является неявным false |
Result Type int[] | Является неявным false |
Result Type long | Является неявным false |
Result Type long[] | Является неявным false |
Result Type short | Является неявным false |
Result Type stdlib.List<IData> | Является неявным false |
Result Type string | Является неявным false |
Методы
Link to методы
Name: asBool
Casts this IData to a boolean.
Returns: this data as a bool
Return Type: boolean
ZenScript Copy// MapData.asBool() as boolean
(Hello: "World", Somewhere: "Over the rainbow").asBool();
Name: asByte
Casts this IData to a byte.
Returns: this data as a byte
Return Type: byte
ZenScript Copy// MapData.asByte() as byte
(Hello: "World", Somewhere: "Over the rainbow").asByte();
Name: asByteArray
Casts this IData to a byte array.
Returns: this data as a byte array
Return Type: byte[]
ZenScript Copy// MapData.asByteArray() as byte[]
(Hello: "World", Somewhere: "Over the rainbow").asByteArray();
Name: asDouble
Casts this IData to a double.
Returns: this data as a double
Return Type: double
ZenScript Copy// MapData.asDouble() as double
(Hello: "World", Somewhere: "Over the rainbow").asDouble();
Name: asFloat
Casts this IData to a float.
Returns: this data as a float
Return Type: float
ZenScript Copy// MapData.asFloat() as float
(Hello: "World", Somewhere: "Over the rainbow").asFloat();
Name: asInt
Casts this IData to an int.
Returns: this data as an int
Return Type: int
ZenScript Copy// MapData.asInt() as int
(Hello: "World", Somewhere: "Over the rainbow").asInt();
Name: asIntArray
Casts this IData to an int array.
Returns: this data as an int array
Return Type: int[]
ZenScript Copy// MapData.asIntArray() as int[]
(Hello: "World", Somewhere: "Over the rainbow").asIntArray();
Name: asList
Casts this IData to a list.
Returns: this data as a list
Return Type: stdlib.List<IData>
ZenScript Copy// MapData.asList() as stdlib.List<IData>
(Hello: "World", Somewhere: "Over the rainbow").asList();
Name: asLong
Casts this IData to a long.
Returns: this data as a long
Return Type: long
ZenScript Copy// MapData.asLong() as long
(Hello: "World", Somewhere: "Over the rainbow").asLong();
Name: asLongArray
Casts this IData to a long array.
Returns: this data as a long array
Return Type: long[]
ZenScript Copy// MapData.asLongArray() as long[]
(Hello: "World", Somewhere: "Over the rainbow").asLongArray();
Name: asShort
Casts this IData to a short.
Returns: this data as a short
Return Type: short
ZenScript Copy// MapData.asShort() as short
(Hello: "World", Somewhere: "Over the rainbow").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// MapData.asString() as string
(Hello: "World", Somewhere: "Over the rainbow").asString();
Name: compareTo
Compares this IData to the other IData
Returns: The comparison result.
Return Type: int
ZenScript Copy// MapData.compareTo(other as IData) as int
(Hello: "World", Somewhere: "Over the rainbow").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// MapData.getAsString() as string
(Hello: "World", Somewhere: "Over the rainbow").getAsString();
Name: getId
Gets the internal ID of this data.
Returns: the intenral ID of this data.
Return Type: byte
ZenScript Copy// MapData.getId() as byte
(Hello: "World", Somewhere: "Over the rainbow").getId();
Name: isEmpty
Checks if this data is empty.
Returns: True if empty.
Return Type: boolean
ZenScript Copy// MapData.isEmpty() as boolean
(Hello: "World", Somewhere: "Over the rainbow").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// MapData.map(operation as Function<IData,IData>) as IData
(Hello: "World", Somewhere: "Over the rainbow").map((data) => 3);
Параметр | Тип | Описание |
---|---|---|
Параметр operation | Тип Function<IData,IData> | Описание The operation to apply to this IData |
Name: putAll
Adds all entries from the given map into this one. Can override existing keys.
ZenScript Copy// MapData.putAll(map as IData[string])
(Hello: "World", Somewhere: "Over the rainbow").putAll({Hello: "Goodbye", Item: "Bedrock"});
Параметр | Тип | Описание |
---|---|---|
Параметр map | Тип IData[string] | Описание The other entries to be added to this map |
Name: setAt
Sets the given value inside this IData at the given index.
ZenScript CopyMapData.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 CopymyMapData + other as IData
(Hello: "World", Somewhere: "Over the rainbow") + 2
Name: AND
Applies a bitwise AND (&) operation to this IData and the other IData
ZenScript CopymyMapData & other as IData
(Hello: "World", Somewhere: "Over the rainbow") & 2
Name: CAT
Concatenates the given IData to this IData.
ZenScript CopymyMapData ~ other as IData
(Hello: "World", Somewhere: "Over the rainbow") ~ 2
Name: COMPARE
Compares this IData to the other IData
ZenScript CopymyMapData < other as IData
(Hello: "World", Somewhere: "Over the rainbow") < 5
Name: DIV
Divides the given IData from this IData.
ZenScript CopymyMapData / other as IData
(Hello: "World", Somewhere: "Over the rainbow") / 2
Name: MOD
Applies a modulo operation to this IData against the other IData.
ZenScript CopymyMapData % other as IData
(Hello: "World", Somewhere: "Over the rainbow") % 2
Name: MUL
Multiplies the given IData to this IData.
ZenScript CopymyMapData * other as IData
(Hello: "World", Somewhere: "Over the rainbow") * 2
Name: NEG
Negates this IData.
ZenScript Copy-myMapData
-(Hello: "World", Somewhere: "Over the rainbow")
Name: NOT
Applies a NOT (!) operation to this IData.
ZenScript Copy!myMapData
!true
Name: OR
Applies a bitwise OR (|) operation to this IData and the other IData
ZenScript CopymyMapData | other as IData
(Hello: "World", Somewhere: "Over the rainbow") | 2
Name: SHL
Applies a SHL (<<) operation to this data by the other data
ZenScript CopymyMapData << other as IData
(Hello: "World", Somewhere: "Over the rainbow") << 2
Name: SHR
Applies a SHR (>>) operation to this data by the other data
ZenScript CopymyMapData >> other as IData
(Hello: "World", Somewhere: "Over the rainbow") >> 2
Name: SUB
Subtracts the given IData from this IData.
ZenScript CopymyMapData - other as IData
(Hello: "World", Somewhere: "Over the rainbow") - 2
Name: XOR
Applies a bitwise XOR (^) operation to this IData and the other IData
ZenScript CopymyMapData ^ other as IData
(Hello: "World", Somewhere: "Over the rainbow") ^ 2
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter | Описание |
---|---|---|---|---|
Название isEmpty | Тип boolean | Имеет Getter true | Имеет Setter false | Описание Checks if this data is empty. |