MCParseResults
导入相关包
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
方法
equals #等于
Return Type: boolean
MCParseResults.equals(o as Object) as boolean
参数 | 类型 | 描述 |
---|
o | Object | No Description Provided |
getContext
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();
hashCode
Return Type: int
MCParseResults.hashCode() as int
myMCParseResults.hashCode();
toString
Return Type: string
MCParseResults.toString() as string
myMCParseResults.toString();
运算符
EQUALS
myMCParseResults == o 为对象