Despachador MCCommand
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.MCCommandDispatcher;
Casters
Result type | Is Implicit |
---|
string | true |
Methods
equals
Return Type: boolean
MCCommandDispatcher.equals(o as Object) as boolean
Parameter | Type | Description |
---|
o | Object | No Description Provided |
ejecutar
Return Type: int
MCCommandDispatcher.execute(parse as MCParseResults) as int
Return Type: int
MCCommandDispatcher.execute(input as string, source as MCCommandSource) as int
encontrar ambigüedades
Return Type: void
MCCommandDispatcher.findAmbiguities(consumer as MCAmbiguityConsumer) as void
encontrarNodo
Return Type: MCCommandNode
MCCommandDispatcher.findNode(path as Collection<string>) as MCCommandNode
Parameter | Type | Description |
---|
path | Collection<string> | No Description Provided |
Todos los usos
Return Type: string[]
MCCommandDispatcher.getAllUsage(node as MCCommandNode, source as MCCommandSource, restricted as boolean) as string[]
Hacer sugerencias completadas
Return Type: MCSuggestions
MCCommandDispatcher.getCompletionSuggestions(parse as MCParseResults) as MCSuggestions
Return Type: MCSuggestions
MCCommandDispatcher.getCompletionSuggestions(parse as MCParseResults, cursor as int) as MCSuggestions
Parameter | Type | Description |
---|
parse | Resultados MCParseo | No Description Provided |
cursor | int | No Description Provided |
getPath
Return Type: Collection<string>
MCCommandDispatcher.getPath(target as MCCommandNode) as Collection<string>
getRoot
Return Type: MCRootCommandNode
MCCommandDispatcher.getRoot() as MCRootCommandNode
myMCCommandDispatcher.getRoot();
getSmartUsage
Return Type: string[MCCommandNode]
MCCommandDispatcher.getSmartUsage(node as MCCommandNode, source as MCCommandSource) as string[MCCommandNode]
hashCode
Return Type: int
MCCommandDispatcher.hashCode() as int
myMCCommandDispatcher.hashCode();
parse
Return Type: MCParseResults
MCCommandDispatcher.parse(command as string, source as MCCommandSource) as MCParseResults
Parameter | Type | Description |
---|
command | string | No Description Provided |
fuente | Fuente MCCommandSource | No Description Provided |
registrarse
Return Type: MCLiteralCommandNode
MCCommandDispatcher.register(command as MCLiteralArgumentBuilder) as MCLiteralCommandNode
setConsumer
Return Type: void
MCCommandDispatcher.setConsumer(consumer as MCResultConsumer) as void
toString
Return Type: string
MCCommandDispatcher.toString() as string
myMCCommandDispatcher.toString();
Operators
EQUALS
myMCCommandDispatcher == o as Object