Interface Operation<R>

Type Parameters:
R - The type of the operation's result.
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: Operation.java 993 2022-01-19 22:26:20Z tquadrat $") @API(status=STABLE, since="0.1.0") public interface Operation<R>

A variant of the interface Supplier with a get() method that allows to throw an exception.

This is a functional interface whose functional method is get().

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Operation.java 993 2022-01-19 22:26:20Z tquadrat $
Since:
0.1.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.lang.Operation"

UML Diagram for "org.tquadrat.foundation.lang.Operation"

UML Diagram for "org.tquadrat.foundation.lang.Operation"
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    The operation.
  • Method Details

    • get

      R get() throws Exception
      The operation.
      Returns:
      The operation's result.
      Throws:
      Exception - Something went wrong.