Module org.tquadrat.foundation.base
Interface TCEConsumer<T>
- Type Parameters:
T
- The type of the input to the operation.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
@ClassVersion(sourceVersion="$Id: TCEConsumer.java 993 2022-01-19 22:26:20Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public interface TCEConsumer<T>
The TCE version of the interface
Different from the method
This is a functional interface whose functional method is
Consumer
that represents an operation that accepts a single input argument and
returns no result. Unlike most other functional interfaces,
Consumer
is expected to operate via side effects.Different from the method
Consumer.accept()
the method
accept(Object)
of this interface declares to throw a
checked exception.This is a functional interface whose functional method is
accept(Object)
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: TCEConsumer.java 993 2022-01-19 22:26:20Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.function.tce.TCEConsumer"
-
Method Summary
-
Method Details
-
accept
Performs this operation on the given argument.- Parameters:
arg
- The input argument- Throws:
Exception
- Something went wrong.
-