MCParseResults
Link to mcparseresults
导入类
Link to 导入类
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.MCParseResults;
Casters
Link to casters
结果类型 | 是否隐藏 |
---|---|
结果类型 string | 是否隐藏 true |
使用方式
Link to 使用方式
Name: equals
Return Type: boolean
ZenScript CopyMCParseResults.equals(o as Object) as boolean
参数 | 类型 | 描述 |
---|---|---|
参数 o | 类型 Object | 描述 No Description Provided |
Name: getContext
Return Type: MCCommandContextBuilder
ZenScript Copy// MCParseResults.getContext() as MCCommandContextBuilder
myMCParseResults.getContext();
Name: getExceptions
Return Type: Exception[MCCommandNode]
ZenScript Copy// MCParseResults.getExceptions() as Exception[MCCommandNode]
myMCParseResults.getExceptions();
Name: getReader
Return Type: MCImmutableStringReader
ZenScript Copy// MCParseResults.getReader() as MCImmutableStringReader
myMCParseResults.getReader();
Name: hashCode
Return Type: int
ZenScript Copy// MCParseResults.hashCode() as int
myMCParseResults.hashCode();
Name: toString
Return Type: string
ZenScript Copy// MCParseResults.toString() as string
myMCParseResults.toString();
运算符
Link to 运算符
Name: EQUALS
ZenScriptCopymyMCParseResults == o 为对象