Interface IntConsumer


public interface IntConsumer
Represents a consumer of int-values.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(int value)
    Consume an int.
  • Method Details