Interface EntityCommandExecutor

All Superinterfaces:
NormalExecutor<org.bukkit.entity.Entity,BukkitEntity>, TypedExecutor<org.bukkit.entity.Entity,BukkitEntity>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface EntityCommandExecutor extends NormalExecutor<org.bukkit.entity.Entity,BukkitEntity>
A normal command executor for an Entity
  • Method Summary

    Modifier and Type
    Method
    Description
    default ExecutorType
    Returns the type of the sender of the current executor.
    default void
    run(ExecutionInfo<org.bukkit.entity.Entity,BukkitEntity> info)
    Executes the command.
    void
    run(org.bukkit.entity.Entity sender, CommandArguments args)
    The code to run when this command is performed

    Methods inherited from interface dev.jorel.commandapi.executors.NormalExecutor

    executeWith