Interface CommandTreeNode.EntitySelection
- All Superinterfaces:
- CommandTreeNode<CommandTreeNode.EntitySelection>,- CommandTreeNode.Argument<CommandTreeNode.EntitySelection>
- Enclosing interface:
- CommandTreeNode<T extends CommandTreeNode<T>>
public static interface CommandTreeNode.EntitySelection
extends CommandTreeNode.Argument<CommandTreeNode.EntitySelection>
A 
CommandTreeNode that augments entity based parameters.- 
Nested Class SummaryNested classes/interfaces inherited from interface org.spongepowered.api.command.registrar.tree.CommandTreeNodeCommandTreeNode.Amount, CommandTreeNode.Argument<T extends CommandTreeNode<T>>, CommandTreeNode.Basic, CommandTreeNode.EntitySelection, CommandTreeNode.NodeFactory, CommandTreeNode.Range<S extends Number>, CommandTreeNode.Root, CommandTreeNode.StringParser
- 
Method SummaryModifier and TypeMethodDescriptionIndicates that only players can be selected.single()Indicates that only one entity can be selected by this parameter.Methods inherited from interface org.spongepowered.api.command.registrar.tree.CommandTreeNodechild, child, child, completions, completions, customCompletions, executable, redirect, requires
- 
Method Details- 
playersOnlyCommandTreeNode.EntitySelection playersOnly()Indicates that only players can be selected. If not called, all entities may selected by this element.- Returns:
- This, for chaining.
 
- 
singleCommandTreeNode.EntitySelection single()Indicates that only one entity can be selected by this parameter. If this is not called, this element will default to allowing the selection of multiple entities.- Returns:
- This, for chaining.
 
 
-