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