MCParseResults
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.
import crafttweaker.api.commands.custom.MCParseResults;
Casters
Result type | Is Implicit |
---|---|
Result type string | Is Implicit true |
Methods
Return Type: boolean
MCParseResults.equals(o as Object) as boolean
Parameter | Type | Description |
---|---|---|
Parameter o | Type Object | Description No Description Provided |
Return Type: MCCommandContextBuilder
// MCParseResults.getContext() as MCCommandContextBuilder
myMCParseResults.getContext();
Return Type: Exception[MCCommandNode]
// MCParseResults.getExceptions() as Exception[MCCommandNode]
myMCParseResults.getExceptions();
Return Type: MCImmutableStringReader
// MCParseResults.getReader() as MCImmutableStringReader
myMCParseResults.getReader();
Return Type: int
// MCParseResults.hashCode() as int
myMCParseResults.hashCode();
Return Type: string
// MCParseResults.toString() as string
myMCParseResults.toString();
Operators
myMCParseResults == o as Object