Interface ParameterizedSupplier<T>

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 ParameterizedSupplier<T>
Represents a supplier that accepts a parameter.
  • Method Summary

    Modifier and Type
    Method
    Description
    accept(T value)
     
  • Method Details

    • accept

      T accept(T value)