MCLiteralCommand节点
Link to mcliteralcommand节点
导入类
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.MCLiteralCommandNode;
Extending MCCommandNode
Link to extending-mccommandnode
MCLiteralCommandNode extends MCCommandNode. That means all methods available in MCCommandNode are also available in MCLiteralCommandNode
Casters
Link to casters
结果类型 | 是否隐藏 |
---|---|
结果类型 string | 是否隐藏 true |
使用方式
Link to 使用方式
Name: addChild
Return Type: void
ZenScript CopyMCLiteralCommandNode.addChild(node as MCCommandNode) as void
参数 | 类型 | 描述 |
---|---|---|
参数 节点 | 类型 MCCommand节点 | 描述 No Description Provided |
Name: canUse
Return Type: boolean
ZenScript CopyMCLiteralCommandNode.canUse(source as MCCommandSource) as boolean
参数 | 类型 | 描述 |
---|---|---|
参数 来源 | 类型 MC命令源 | 描述 No Description Provided |
Name: createBuilder
Return Type: MCLiteralArgumentBuilder
ZenScript Copy// MCLiteralCommandNode.createBuilder() as MCLiteralArgumentBuilder
myMCLiteralCommandNode.createBuilder();
Name: equals
Return Type: boolean
ZenScript CopyMCLiteralCommandNode.equals(o as Object) as boolean
参数 | 类型 | 描述 |
---|---|---|
参数 o | 类型 Object | 描述 No Description Provided |
Name: findAmbiguities
Return Type: void
ZenScript CopyMCLiteralCommandNode.findAmbiguities(consumer as MCAmbiguityConsumer) as void
参数 | 类型 | 描述 |
---|---|---|
参数 消费者 | 类型 MCAmbiguityConsumer | 描述 No Description Provided |
Name: getChild
Return Type: MCCommandNode
ZenScript CopyMCLiteralCommandNode.getChild(name as string) as MCCommandNode
参数 | 类型 | 描述 |
---|---|---|
参数 name(名称) | 类型 string | 描述 No Description Provided |
Name: getChildren
Return Type: Collection<MCCommandNode>
ZenScript Copy// MCLiteralCommandNode.getChildren() as Collection<MCCommandNode>
myMCLiteralCommandNode.getChildren();
Name: getCommand
Return Type: MCCommand
ZenScript Copy// MCLiteralCommandNode.getCommand() as MCCommand
myMCLiteralCommandNode.getCommand();
Name: getExamples
Return Type: Collection<string>
ZenScript Copy// MCLiteralCommandNode.getExamples() as Collection<string>
myMCLiteralCommandNode.getExamples();
Name: getLiteral
Return Type: string
ZenScript Copy// MCLiteralCommandNode.getLiteral() as string
myMCLiteralCommandNode.getLiteral();
Name: getName
Return Type: string
ZenScript Copy// MCLiteralCommandNode.getName() as string
myMCLiteralCommandNode.getName();
Name: getRedirect
Return Type: MCCommandNode
ZenScript Copy// MCLiteralCommandNode.getRedirect() as MCCommandNode
myMCLiteralCommandNode.getRedirect();
Name: getRedirectModifier
Return Type: MCRedirectModifier
ZenScript Copy// MCLiteralCommandNode.getRedirectModifier() as MCRedirectModifier
myMCLiteralCommandNode.getRedirectModifier();
Name: getRelevantNodes
Return Type: Collection<MCCommandNode>
ZenScript CopyMCLiteralCommandNode.getRelevantNodes(input as string) as Collection<MCCommandNode>
参数 | 类型 | 描述 |
---|---|---|
参数 input(输入) | 类型 string | 描述 No Description Provided |
Name: getRequirement
Return Type: Predicate<MCCommandSource>
ZenScript Copy// MCLiteralCommandNode.getRequirement() as Predicate<MCCommandSource>
myMCLiteralCommandNode.getRequirement();
Name: getUsageText
Return Type: string
ZenScript Copy// MCLiteralCommandNode.getUsageText() as string
myMCLiteralCommandNode.getUsageText();
Name: hashCode
Return Type: int
ZenScript Copy// MCLiteralCommandNode.hashCode() as int
myMCLiteralCommandNode.hashCode();
Name: isFork
Return Type: boolean
ZenScript Copy// MCLiteralCommandNode.isFork() as boolean
myMCLiteralCommandNode.isFork();
Name: isValidInput
Return Type: boolean
ZenScript CopyMCLiteralCommandNode.isValidInput(input as string) as boolean
参数 | 类型 | 描述 |
---|---|---|
参数 input(输入) | 类型 string | 描述 No Description Provided |
Name: listSuggestions
Return Type: MCSuggestions
ZenScript CopyMCLiteralCommandNode.listSuggestions(context as MCCommandContext, builder as MCSuggestionsBuilder) as MCSuggestions
参数 | 类型 | 描述 |
---|---|---|
参数 上下文: | 类型 MCCommandContext | 描述 No Description Provided |
参数 生成器 | 类型 MCSuggestionsBuilder | 描述 No Description Provided |
Name: parse
Return Type: void
ZenScript CopyMCLiteralCommandNode.parse(input as string, contextBuilder as MCCommandContextBuilder) as void
参数 | 类型 | 描述 |
---|---|---|
参数 input(输入) | 类型 string | 描述 No Description Provided |
参数 contextBuilder | 类型 MCCommandContextBuilder | 描述 No Description Provided |
Name: toString
Return Type: string
ZenScript Copy// MCLiteralCommandNode.toString() as string
myMCLiteralCommandNode.toString();
运算符
Link to 运算符
Name: COMPARE
ZenScript CopymyMCLiteralCommandNode < o as MCCommandNode
Name: EQUALS
ZenScript CopymyMCLiteralCommandNode == o as Object