All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nkjmlab.sorm4j.common.FunctionHandler Maven / Gradle / Ivy

There is a newer version: 2.1.7
Show newest version
package org.nkjmlab.sorm4j.common;

/**
 * Interface for handling with a return value.
 *
 * @param 
 */
@FunctionalInterface
public interface FunctionHandler {

  /**
   * Performs this operation on the given argument and return a value.
   *
   * @param t the input argument
   * @return
   * @throws Exception
   */
  R apply(T t) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy