MCliiteralCommandNode
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 |
---|
string | true |
Methods
addChild
Return Type: void
MCLiteralCommandNode.addChild(node as MCCommandNode) as void
canUse
Return Type: boolean
MCLiteralCommandNode.canUse(source as MCCommandSource) as boolean
createBuilder
Return Type: MCLiteralArgumentBuilder
MCLiteralCommandNode.createBuilder() as MCLiteralArgumentBuilder
myMCLiteralCommandNode.createBuilder();
equals
Return Type: boolean
MCLiteralCommandNode.equals(o as Object) as boolean
Parameter | Type | Description |
---|
o | Object | No Description Provided |
findAmbiguities
Return Type: void
MCLiteralCommandNode.findAmbiguities(consumer as MCAmbiguityConsumer) as void
getChild
Return Type: MCCommandNode
MCLiteralCommandNode.getChild(name as string) as MCCommandNode
Parameter | Type | Description |
---|
name | string | No Description Provided |
getChildren
Return Type: Collection<MCCommandNode>
MCLiteralCommandNode.getChildren() as Collection<MCCommandNode>
myMCLiteralCommandNode.getChildren();
getCommand
Return Type: MCCommand
MCLiteralCommandNode.getCommand() as MCCommand
myMCLiteralCommandNode.getCommand();
getExamples
Return Type: Collection<string>
MCLiteralCommandNode.getExamples() as Collection<string>
myMCLiteralCommandNode.getExamples();
getLiteral
Return Type: string
MCLiteralCommandNode.getLiteral() as string
myMCLiteralCommandNode.getLiteral();
getName
Return Type: string
MCLiteralCommandNode.getName() as string
myMCLiteralCommandNode.getName();
getRedirect
Return Type: MCCommandNode
MCLiteralCommandNode.getRedirect() as MCCommandNode
myMCLiteralCommandNode.getRedirect();
getRedirectModifier
Return Type: MCRedirectModifier
MCLiteralCommandNode.getRedirectModifier() as MCRedirectModifier
myMCLiteralCommandNode.getRedirectModifier();
getRelevantNodes
Return Type: Collection<MCCommandNode>
MCLiteralCommandNode.getRelevantNodes(input as string) as Collection<MCCommandNode>
Parameter | Type | Description |
---|
input | string | No Description Provided |
getRequirement
Return Type: Predicate<MCCommandSource>
MCLiteralCommandNode.getRequirement() as Predicate<MCCommandSource>
myMCLiteralCommandNode.getRequirement();
getUsageText
Return Type: string
MCLiteralCommandNode.getUsageText() as string
myMCLiteralCommandNode.getUsageText();
hashCode
Return Type: int
MCLiteralCommandNode.hashCode() as int
myMCLiteralCommandNode.hashCode();
isFork
Return Type: boolean
MCLiteralCommandNode.isFork() as boolean
myMCLiteralCommandNode.isFork();
Return Type: boolean
MCLiteralCommandNode.isValidInput(input as string) as boolean
Parameter | Type | Description |
---|
input | string | No Description Provided |
listSuggestions
Return Type: MCSuggestions
MCLiteralCommandNode.listSuggestions(context as MCCommandContext, builder as MCSuggestionsBuilder) as MCSuggestions
parse
Return Type: void
MCLiteralCommandNode.parse(input as string, contextBuilder as MCCommandContextBuilder) as void
Parameter | Type | Description |
---|
input | string | No Description Provided |
contextBuilder | MCCommandContextBuilder | No Description Provided |
toString
Return Type: string
MCLiteralCommandNode.toString() as string
myMCLiteralCommandNode.toString();
演算子
COMPARE
myMCLiteralCommandNode < o as MCCommandNode
EQUALS
myMCLiteralCommandNode == o as Object