Interface ExConsumer<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 ExConsumer<T>
Author:
JY
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ExConsumer
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T t)
     
    static ExConsumer