MCParsedArgument
Link to mcparsedargument
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.commands.custom.MCParsedArgument;
Casters
Link to casters
Result type | Is Implicit |
---|---|
Result type string | Is Implicit true |
Methods
Link to methods
Name: equals
Return Type: boolean
ZenScript CopyMCParsedArgument.equals(o as Object) as boolean
Parameter | Type | Description |
---|---|---|
Parameter o | Type Object | Description No Description Provided |
Name: getRange
Return Type: MCStringRange
ZenScript Copy// MCParsedArgument.getRange() as MCStringRange
myMCParsedArgument.getRange();
Name: hashCode
Return Type: int
ZenScript Copy// MCParsedArgument.hashCode() as int
myMCParsedArgument.hashCode();
Name: toString
Return Type: string
ZenScript Copy// MCParsedArgument.toString() as string
myMCParsedArgument.toString();
Operators
Link to operators
Name: EQUALS
ZenScript CopymyMCParsedArgument == o as Object