程序包 org.bukkit.util

接口 Consumer<T>

类型参数:
T - 输入参数类型
所有超级接口:
Consumer<T>

@Deprecated public interface Consumer<T> extends Consumer<T>
已过时。
请使用 Consumer
表示接受一个输入参数且没有返回值的操作.

原文:Represents an operation that accepts a single input argument and returns no result.

  • 方法概要

    修饰符和类型
    方法
    说明
    void
    accept(T t)
    已过时。
    使用给定的参数执行操作.

    从接口继承的方法 java.util.function.Consumer

    andThen
  • 方法详细资料

    • accept

      void accept(T t)
      已过时。
      使用给定的参数执行操作.

      原文:Performs this operation on the given argument.

      指定者:
      accept 在接口中 Consumer<T>
      参数:
      t - 输入参数