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 |
---|
string | true |
Methods
equals
Return Type: boolean
MCParseResults.equals(o as Object) as boolean
Parameter | Type | Description |
---|
o | Object | No Description Provided |
getContext
Return Type: MCCommandContextBuilder
MCParseResults.getContext() as MCCommandContextBuilder
myMCParseResults.getContext();
getExceptions
Return Type: Exception[MCCommandNode]
MCParseResults.getExceptions() as Exception[MCCommandNode]
myMCParseResults.getExceptions();
getReader
Return Type: MCImmutableStringReader
MCParseResults.getReader() as MCImmutableStringReader
myMCParseResults.getReader();
hashCode
Return Type: int
MCParseResults.hashCode() as int
myMCParseResults.hashCode();
toString
Return Type: string
MCParseResults.toString() as string
myMCParseResults.toString();
演算子
EQUALS
myMCParseResults == o as Object