IConsumer

public interface IConsumer<T>

Functional interface that consumes a value.

Parameters:
  • <T> – The type of value to consume.

Methods

accept

void accept(T parInput)

Performs this operation on the given argument.

Parameters:
  • parInput – The input argument.