MCRootCommandNode
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.MCRootCommandNode;
Extending MCCommandNode
MCRootCommandNode extends MCCommandNode. That means all methods available in MCCommandNode are also available in MCRootCommandNode
Casters
Result type | Is Implicit |
---|---|
Result type string | Is Implicit true |
Methods
Return Type: void
MCRootCommandNode.addChild(node as MCCommandNode) as void
Parameter | Type | Description |
---|---|---|
Parameter node | Type MCCommandNode | Description No Description Provided |
Return Type: boolean
MCRootCommandNode.canUse(source as MCCommandSource) as boolean
Parameter | Type | Description |
---|---|---|
Parameter source | Type MCCommandSource | Description No Description Provided |
Return Type: MCArgumentBuilder
// MCRootCommandNode.createBuilder() as MCArgumentBuilder
myMCRootCommandNode.createBuilder();
Return Type: boolean
MCRootCommandNode.equals(o as Object) as boolean
Parameter | Type | Description |
---|---|---|
Parameter o | Type Object | Description No Description Provided |
Return Type: void
MCRootCommandNode.findAmbiguities(consumer as MCAmbiguityConsumer) as void
Parameter | Type | Description |
---|---|---|
Parameter consumer | Type MCAmbiguityConsumer | Description No Description Provided |
Return Type: MCCommandNode
MCRootCommandNode.getChild(name as string) as MCCommandNode
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description No Description Provided |
Return Type: Collection<MCCommandNode>
// MCRootCommandNode.getChildren() as Collection<MCCommandNode>
myMCRootCommandNode.getChildren();
Return Type: MCCommand
// MCRootCommandNode.getCommand() as MCCommand
myMCRootCommandNode.getCommand();
Return Type: Collection<string>
// MCRootCommandNode.getExamples() as Collection<string>
myMCRootCommandNode.getExamples();
Return Type: string
// MCRootCommandNode.getName() as string
myMCRootCommandNode.getName();
Return Type: MCCommandNode
// MCRootCommandNode.getRedirect() as MCCommandNode
myMCRootCommandNode.getRedirect();
Return Type: MCRedirectModifier
// MCRootCommandNode.getRedirectModifier() as MCRedirectModifier
myMCRootCommandNode.getRedirectModifier();
Return Type: Collection<MCCommandNode>
MCRootCommandNode.getRelevantNodes(input as string) as Collection<MCCommandNode>
Parameter | Type | Description |
---|---|---|
Parameter input | Type string | Description No Description Provided |
Return Type: Predicate<MCCommandSource>
// MCRootCommandNode.getRequirement() as Predicate<MCCommandSource>
myMCRootCommandNode.getRequirement();
Return Type: string
// MCRootCommandNode.getUsageText() as string
myMCRootCommandNode.getUsageText();
Return Type: int
// MCRootCommandNode.hashCode() as int
myMCRootCommandNode.hashCode();
Return Type: boolean
// MCRootCommandNode.isFork() as boolean
myMCRootCommandNode.isFork();
Return Type: boolean
MCRootCommandNode.isValidInput(input as string) as boolean
Parameter | Type | Description |
---|---|---|
Parameter input | Type string | Description No Description Provided |
Return Type: MCSuggestions
MCRootCommandNode.listSuggestions(context as MCCommandContext, builder as MCSuggestionsBuilder) as MCSuggestions
Parameter | Type | Description |
---|---|---|
Parameter context | Type MCCommandContext | Description No Description Provided |
Parameter builder | Type MCSuggestionsBuilder | Description No Description Provided |
Return Type: void
MCRootCommandNode.parse(input as string, contextBuilder as MCCommandContextBuilder) as void
Parameter | Type | Description |
---|---|---|
Parameter input | Type string | Description No Description Provided |
Parameter contextBuilder | Type MCCommandContextBuilder | Description No Description Provided |
Return Type: string
// MCRootCommandNode.toString() as string
myMCRootCommandNode.toString();
Operators
myMCRootCommandNode < o as MCCommandNode
myMCRootCommandNode == o as Object