Interface NumericFunction.INumericExecutor

Enclosing class:
NumericFunction
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 static interface NumericFunction.INumericExecutor
Implementations of this interface are used to execute a numeric opertaion on the provided item.
  • Method Summary

    Modifier and Type
    Method
    Description
    Perform the execution using the provided item.
  • Method Details

    • execute

      @NonNull INumericItem execute(@NonNull INumericItem item)
      Perform the execution using the provided item.
      Parameters:
      item - the item to operate on
      Returns:
      the numeric result from the execution