Class ScopeArgument

java.lang.Object
cn.nukkit.command.selector.args.impl.ScopeArgument
All Implemented Interfaces:
ISelectorArgument, Comparable<ISelectorArgument>
Direct Known Subclasses:
DX, DY, DZ

@PowerNukkitXOnly @Since("1.19.60-r1") public abstract class ScopeArgument extends Object implements ISelectorArgument
args like dx,dy,dz.
  • Constructor Details

    • ScopeArgument

      public ScopeArgument()
  • Method Details

    • getPriority

      public int getPriority()
      Description copied from interface: ISelectorArgument
      解析优先级定义了各个参数的解析顺序

      优先级越高(数字越小)的参数,其越先被解析,且其解析结果将会影响下个参数的解析

      Specified by:
      getPriority in interface ISelectorArgument
      Returns:
      此参数的解析优先级
    • getDefaultValue

      @Nullable public String getDefaultValue(Map<String,List<String>> values, SelectorType selectorType, CommandSender sender)
      Description copied from interface: ISelectorArgument
      若一个参数有默认值(即此方法返回非null值),则在解析时若给定参数表中没有此参数,会以此默认值参与解析
      Specified by:
      getDefaultValue in interface ISelectorArgument
      Parameters:
      values - 参数列表
      selectorType - 选择器类型
      sender - 命令执行者
      Returns:
      此参数的默认值