MCRootCommandNode

Link to mcrootcommandnode

Importing the class

Link to 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.

ZenScript
Copy
import crafttweaker.api.commands.custom.MCRootCommandNode;

Extending MCCommandNode

Link to extending-mccommandnode

MCRootCommandNode extends MCCommandNode. That means all methods available in MCCommandNode are also available in MCRootCommandNode

반환 자료형암묵적
반환 자료형
string
암묵적
true

Name: addChild

Return Type: void

ZenScript
Copy
MCRootCommandNode.addChild(node as MCCommandNode) as void
ParameterTypeDescription
Parameter
node
Type
MCCommandNode
Description
No Description Provided

Name: canUse

Return Type: boolean

ZenScript
Copy
MCRootCommandNode.canUse(source as MCCommandSource) as boolean
ParameterTypeDescription
Parameter
source
Type
MCCommandSource
Description
No Description Provided

Name: createBuilder

Return Type: MCArgumentBuilder

ZenScript
Copy
// MCRootCommandNode.createBuilder() as MCArgumentBuilder

myMCRootCommandNode.createBuilder();

Name: equals

Return Type: boolean

ZenScript
Copy
MCRootCommandNode.equals(o as Object) as boolean
ParameterTypeDescription
Parameter
o
Type
Object
Description
No Description Provided

Name: findAmbiguities

Return Type: void

ZenScript
Copy
MCRootCommandNode.findAmbiguities(consumer as MCAmbiguityConsumer) as void
ParameterTypeDescription
Parameter
consumer
Type
MCAmbiguityConsumer
Description
No Description Provided

Name: getChild

Return Type: MCCommandNode

ZenScript
Copy
MCRootCommandNode.getChild(name as string) as MCCommandNode
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Name: getChildren

Return Type: Collection<MCCommandNode>

ZenScript
Copy
// MCRootCommandNode.getChildren() as Collection<MCCommandNode>

myMCRootCommandNode.getChildren();

Name: getCommand

Return Type: MCCommand

ZenScript
Copy
// MCRootCommandNode.getCommand() as MCCommand

myMCRootCommandNode.getCommand();

Name: getExamples

Return Type: Collection<string>

ZenScript
Copy
// MCRootCommandNode.getExamples() as Collection<string>

myMCRootCommandNode.getExamples();

Name: getName

Return Type: string

ZenScript
Copy
// MCRootCommandNode.getName() as string

myMCRootCommandNode.getName();

Name: getRedirect

Return Type: MCCommandNode

ZenScript
Copy
// MCRootCommandNode.getRedirect() as MCCommandNode

myMCRootCommandNode.getRedirect();

Link to getRedirectModifier

Name: getRedirectModifier

Return Type: MCRedirectModifier

ZenScript
Copy
// MCRootCommandNode.getRedirectModifier() as MCRedirectModifier

myMCRootCommandNode.getRedirectModifier();

Link to getRelevantNodes

Name: getRelevantNodes

Return Type: Collection<MCCommandNode>

ZenScript
Copy
MCRootCommandNode.getRelevantNodes(input as string) as Collection<MCCommandNode>
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided

Name: getRequirement

Return Type: Predicate<MCCommandSource>

ZenScript
Copy
// MCRootCommandNode.getRequirement() as Predicate<MCCommandSource>

myMCRootCommandNode.getRequirement();

Name: getUsageText

Return Type: string

ZenScript
Copy
// MCRootCommandNode.getUsageText() as string

myMCRootCommandNode.getUsageText();

Name: hashCode

Return Type: int

ZenScript
Copy
// MCRootCommandNode.hashCode() as int

myMCRootCommandNode.hashCode();

Name: isFork

Return Type: boolean

ZenScript
Copy
// MCRootCommandNode.isFork() as boolean

myMCRootCommandNode.isFork();

Name: isValidInput

Return Type: boolean

ZenScript
Copy
MCRootCommandNode.isValidInput(input as string) as boolean
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided

Name: listSuggestions

Return Type: MCSuggestions

ZenScript
Copy
MCRootCommandNode.listSuggestions(context as MCCommandContext, builder as MCSuggestionsBuilder) as MCSuggestions
ParameterTypeDescription
Parameter
context
Type
MCCommandContext
Description
No Description Provided
Parameter
builder
Type
MCSuggestionsBuilder
Description
No Description Provided

Name: parse

Return Type: void

ZenScript
Copy
MCRootCommandNode.parse(input as string, contextBuilder as MCCommandContextBuilder) as void
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided
Parameter
contextBuilder
Type
MCCommandContextBuilder
Description
No Description Provided

Name: toString

Return Type: string

ZenScript
Copy
// MCRootCommandNode.toString() as string

myMCRootCommandNode.toString();

Name: COMPARE

ZenScript
Copy
myMCRootCommandNode < o as MCCommandNode

Name: EQUALS

ZenScript
Copy
myMCRootCommandNode == o as Object