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
. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.
Importare la Classe
Link to importare-la-classe
Potrebbe essere necessario importare il pacchetto, se si incontrano dei problemi (come castare un vettore), quindi meglio essere sicuri e aggiungere la direttiva di importazione.
ZenScript Copymods.contenttweaker.item.MCToolType
Interfacce Implementate
Link to interfacce-implementate
MCToolType implements the following interfaces. Ciò significa che ogni metodo presente nell'interfaccia può essere usato anche per questa classe.
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");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo String | Descrizione The name to be used |
Metodi
Link to metodi
getName
Link to getname
Gets the name of this toolType. Il nome che viene utilizzato nell'espressione angolare dopo <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();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter |
---|---|---|---|
Nome commandString | Tipo String | Ha Getter sì | Ha Setter no |
Nome nome | Tipo String | Ha Getter sì | Ha Setter no |
Operators
Link to operators
EQUALS
Link to equals
Compares if two given MCToolType objects are equal
ZenScript Copy<tooltype:pickaxe> == o as Object
<tooltype:pickaxe> == new MCToolType("pickaxe")
Parametro | Tipo | Descrizione |
---|---|---|
Parametro o | Tipo Object | Descrizione The other object |
Caster
Link to caster
Tipo Risultato | Implicito |
---|---|
Tipo Risultato String | Implicito no |