Interface FloatConsumer

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 FloatConsumer
A function which takes one float as its parameter, and returns no value.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(float value)
    Accepts this consumer, executing its contents.
  • Method Details

    • accept

      void accept(float value)
      Accepts this consumer, executing its contents.
      Parameters:
      value - The value of which to accept this consumer as