Interface ImageUtils.OperationResultConsumer<T>

All Superinterfaces:
org.apache.logging.log4j.util.TriConsumer<Integer,Integer,T>
Enclosing class:
ImageUtils
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 ImageUtils.OperationResultConsumer<T> extends org.apache.logging.log4j.util.TriConsumer<Integer,Integer,T>
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    accept(Integer integer, Integer integer2, T t)
     
    void
    acceptResult(int x, int y, T result)
     
  • Method Details

    • acceptResult

      void acceptResult(int x, int y, T result)
    • accept

      default void accept(Integer integer, Integer integer2, T t)
      Specified by:
      accept in interface org.apache.logging.log4j.util.TriConsumer<Integer,Integer,T>