接口 ElementSelector<T>

所有超级接口:
Supplier<T>
所有已知实现类:
RandomElementSelector, RingElementSelector

public interface ElementSelector<T> extends Supplier<T>
元素选择器
作者:
渔民小镇
日期:
2022-05-15
  • 方法概要

    修饰符和类型
    方法
    说明
    得到下一个元素
    static <T> ElementSelector<T>
    of(List<T> elements)
    create default ElementSelectorImpl

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

    get
  • 方法详细资料

    • next

      T next()
      得到下一个元素
      返回:
      t
    • of

      static <T> ElementSelector<T> of(List<T> elements)
      create default ElementSelectorImpl
      类型参数:
      T - t
      参数:
      elements - elements
      返回:
      ElementSelector
      从以下版本开始:
      21.19