Nodo de Comandos

Link to nodo-de-comandos

Importing the class

Link to 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.

ZenScript
Copy
import crafttweaker.api.commands.custom.MCLiteralCommandNode;

Extending MCCommandNode

Link to extending-mccommandnode

MCLiteralCommandNode extends MCCommandNode. That means all methods available in MCCommandNode are also available in MCLiteralCommandNode

Result typeIs Implicit
Result type
string
Is Implicit
true

Name: addChild

Return Type: void

ZenScript
Copy
MCLiteralCommandNode.addChild(node as MCCommandNode) as void
ParameterTypeDescription
Parameter
nodo
Type
Nodo MCComando
Description
No Description Provided

Name: canUse

Return Type: boolean

ZenScript
Copy
MCLiteralCommandNode.canUse(source as MCCommandSource) as boolean
ParameterTypeDescription
Parameter
fuente
Type
Fuente MCCommandSource
Description
No Description Provided

Name: createBuilder

Return Type: MCLiteralArgumentBuilder

ZenScript
Copy
// MCLiteralCommandNode.createBuilder() as MCLiteralArgumentBuilder

myMCLiteralCommandNode.createBuilder();

Name: equals

Return Type: boolean

ZenScript
Copy
MCLiteralCommandNode.equals(o as Object) as boolean
ParameterTypeDescription
Parameter
o
Type
Object
Description
No Description Provided

Name: findAmbiguities

Return Type: void

ZenScript
Copy
MCLiteralCommandNode.findAmbiguities(consumer as MCAmbiguityConsumer) as void
ParameterTypeDescription
Parameter
consumidor
Type
MCAmbiguityConsumer
Description
No Description Provided

Name: getChild

Return Type: MCCommandNode

ZenScript
Copy
MCLiteralCommandNode.getChild(name as string) as MCCommandNode
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Name: getChildren

Return Type: Collection<MCCommandNode>

ZenScript
Copy
// MCLiteralCommandNode.getChildren() as Collection<MCCommandNode>

myMCLiteralCommandNode.getChildren();

Name: getCommand

Return Type: MCCommand

ZenScript
Copy
// MCLiteralCommandNode.getCommand() as MCCommand

myMCLiteralCommandNode.getCommand();

Name: getExamples

Return Type: Collection<string>

ZenScript
Copy
// MCLiteralCommandNode.getExamples() as Collection<string>

myMCLiteralCommandNode.getExamples();

Name: getLiteral

Return Type: string

ZenScript
Copy
// MCLiteralCommandNode.getLiteral() as string

myMCLiteralCommandNode.getLiteral();

Name: getName

Return Type: string

ZenScript
Copy
// MCLiteralCommandNode.getName() as string

myMCLiteralCommandNode.getName();

Name: getRedirect

Return Type: MCCommandNode

ZenScript
Copy
// MCLiteralCommandNode.getRedirect() as MCCommandNode

myMCLiteralCommandNode.getRedirect();

Link to getRedirectModifier

Name: getRedirectModifier

Return Type: MCRedirectModifier

ZenScript
Copy
// MCLiteralCommandNode.getRedirectModifier() as MCRedirectModifier

myMCLiteralCommandNode.getRedirectModifier();

Link to getRelevantNodes

Name: getRelevantNodes

Return Type: Collection<MCCommandNode>

ZenScript
Copy
MCLiteralCommandNode.getRelevantNodes(input as string) as Collection<MCCommandNode>
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided

Name: getRequirement

Return Type: Predicate<MCCommandSource>

ZenScript
Copy
// MCLiteralCommandNode.getRequirement() as Predicate<MCCommandSource>

myMCLiteralCommandNode.getRequirement();

Name: getUsageText

Return Type: string

ZenScript
Copy
// MCLiteralCommandNode.getUsageText() as string

myMCLiteralCommandNode.getUsageText();

Name: hashCode

Return Type: int

ZenScript
Copy
// MCLiteralCommandNode.hashCode() as int

myMCLiteralCommandNode.hashCode();

Name: isFork

Return Type: boolean

ZenScript
Copy
// MCLiteralCommandNode.isFork() as boolean

myMCLiteralCommandNode.isFork();

Name: isValidInput

Return Type: boolean

ZenScript
Copy
MCLiteralCommandNode.isValidInput(input as string) as boolean
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided

Name: listSuggestions

Return Type: MCSuggestions

ZenScript
Copy
MCLiteralCommandNode.listSuggestions(context as MCCommandContext, builder as MCSuggestionsBuilder) as MCSuggestions
ParameterTypeDescription
Parameter
contexto
Type
Contexto MCCommand
Description
No Description Provided
Parameter
constructor
Type
Constructor de MCSuggestions
Description
No Description Provided

Name: parse

Return Type: void

ZenScript
Copy
MCLiteralCommandNode.parse(input as string, contextBuilder as MCCommandContextBuilder) as void
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided
Parameter
contextBuilder
Type
Contexto MCCommandContextBuilder
Description
No Description Provided

Name: toString

Return Type: string

ZenScript
Copy
// MCLiteralCommandNode.toString() as string

myMCLiteralCommandNode.toString();

Name: COMPARE

ZenScript
Copy
myMCLiteralCommandNode < o as MCCommandNode

Name: EQUALS

ZenScript
Copy
myMCLiteralCommandNode == o as Object