MCToolType
Link to mctooltype
A Tooltype is used to identify what kind of blocks a tool can mine, or inversely, what kind of tool is required to mine a given block.
This class was added by a mod with mod-id contenttweaker
. Так что если вы хотите использовать эту функцию, вам нужно установить этот мод.
Импорт класса
Link to импорт-класса
Вам может потребоваться импортировать пакет, если вы столкнетесь с какими-либо проблемами (например, с заливкой массива), так что лучше быть в безопасности, чем извиняться и добавлять импорт.
ZenScript Copymods.contenttweaker.item.MCToolType
Implemented Interfaces
Link to implemented-interfaces
MCToolType implements the following interfaces. That means any method available to them can also be used on this class.
Constructors
Link to constructors
Constructs a ToolType object. If one with the given name already exists, they will internally point to the same toolType. Otherwise, a new one with the name is created (The same holds true for Brackets as well!)
ZenScript Copynew mods.contenttweaker.item.MCToolType(name as String);
new mods.contenttweaker.item.MCToolType("pickaxe");
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип String | Описание The name to be used |
Методы
Link to методы
getName
Link to getname
Gets the name of this toolType. The name is what is used in the Bracket expression after the <tooltype:
Return type: String
ZenScript Copy<tooltype:pickaxe>.getName();
hashCode
Link to hashcode
Returns the object's hash code
Return type: int
ZenScript Copy<tooltype:pickaxe>.hashCode();
toString
Link to tostring
Get the string representation of this type. Is different from commandString!
Return type: String
ZenScript Copy<tooltype:pickaxe>.toString();
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название commandString | Тип String | Имеет Getter true | Имеет Setter false |
Название name | Тип String | Имеет Getter true | Имеет Setter false |
Операторы
Link to операторы
EQUALS
Link to equals
Compares if two given MCToolType objects are equal
ZenScript Copy<tooltype:pickaxe> == o as Object
<tooltype:pickaxe> == new MCToolType("pickaxe")
Параметр | Тип | Описание |
---|---|---|
Параметр o | Тип Object | Описание The other object |
Утилиты
Link to утилиты
Тип результата | Является неявным |
---|---|
Тип результата String | Является неявным false |