MCRootCommandNode
Diese Klasse importieren
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 |
---|
string | true |
Methoden
addChild
Return Type: void
MCRootCommandNode.addChild(node as MCCommandNode) as void
Parameter | Type | Beschreibung |
---|
knoten | MCCommandNode | No Description Provided |
canUse
Return Type: boolean
MCRootCommandNode.canUse(source as MCCommandSource) as boolean
createBuilder
Return Type: MCArgumentBuilder
MCRootCommandNode.createBuilder() as MCArgumentBuilder
myMCRootCommandNode.createBuilder();
equals
Return Type: boolean
MCRootCommandNode.equals(o as Object) as boolean
Parameter | Type | Beschreibung |
---|
o | Object | No Description Provided |
findAmbiguitäten
Return Type: void
MCRootCommandNode.findAmbiguities(consumer as MCAmbiguityConsumer) as void
getChild
Return Type: MCCommandNode
MCRootCommandNode.getChild(name as string) as MCCommandNode
Parameter | Type | Beschreibung |
---|
name | string | No Description Provided |
getChildren
Return Type: Collection<MCCommandNode>
MCRootCommandNode.getChildren() as Collection<MCCommandNode>
myMCRootCommandNode.getChildren();
getCommand
Return Type: MCCommand
MCRootCommandNode.getCommand() as MCCommand
myMCRootCommandNode.getCommand();
getExamples
Return Type: Collection<string>
MCRootCommandNode.getExamples() as Collection<string>
myMCRootCommandNode.getExamples();
getName
Return Type: string
MCRootCommandNode.getName() as string
myMCRootCommandNode.getName();
getUmleitung
Return Type: MCCommandNode
MCRootCommandNode.getRedirect() as MCCommandNode
myMCRootCommandNode.getRedirect();
getRedirectModifizierer
Return Type: MCRedirectModifier
MCRootCommandNode.getRedirectModifier() as MCRedirectModifier
myMCRootCommandNode.getRedirectModifier();
getRelevantNodes
Return Type: Collection<MCCommandNode>
MCRootCommandNode.getRelevantNodes(input as string) as Collection<MCCommandNode>
Parameter | Type | Beschreibung |
---|
input | string | No Description Provided |
getAnforderung
Return Type: Predicate<MCCommandSource>
MCRootCommandNode.getRequirement() as Predicate<MCCommandSource>
myMCRootCommandNode.getRequirement();
getUsageText
Return Type: string
MCRootCommandNode.getUsageText() as string
myMCRootCommandNode.getUsageText();
hashCode
Return Type: int
MCRootCommandNode.hashCode() as int
myMCRootCommandNode.hashCode();
isFork
Return Type: boolean
MCRootCommandNode.isFork() as boolean
myMCRootCommandNode.isFork();
Return Type: boolean
MCRootCommandNode.isValidInput(input as string) as boolean
Parameter | Type | Beschreibung |
---|
input | string | No Description Provided |
listSuggestions
Return Type: MCSuggestions
MCRootCommandNode.listSuggestions(context as MCCommandContext, builder as MCSuggestionsBuilder) as MCSuggestions
parse
Return Type: void
MCRootCommandNode.parse(input as string, contextBuilder as MCCommandContextBuilder) as void
Parameter | Type | Beschreibung |
---|
input | string | No Description Provided |
contextBuilder | MCCommandContextBuilder | No Description Provided |
toString
Return Type: string
MCRootCommandNode.toString() as string
myMCRootCommandNode.toString();
Operatoren
COMPARE
myMCRootCommandNode < o as MCCommandNode
EQUALS
myMCRootCommandNode == o as Object