Example usage for org.apache.commons.functor UnaryFunction interface-usage

List of usage examples for org.apache.commons.functor UnaryFunction interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.functor UnaryFunction interface-usage.

Usage

From source file fuzzy.mf.MembershipFunction.java

/**
 * Membership Function marker interface. All provided membership functions 
 * implement this interface.
 * <p>
 * Implementors are encouraged but not required to make their membership 
 * functions {@link java.io.Serializable Serializable}.

From source file org.mili.core.cache.LoadFunction.java

/**
 * This interface defines a load function.
 *
 * @author Michael Lieshoff
 */
public interface LoadFunction<K, V> extends UnaryFunction<K, V> {

From source file org.mili.core.io.FileVersionFunction.java

/**
 * This class is a implentation of an {@link UnaryFunction} and is used to detect file versions
 * in a filename.
 *
 * @author Michael Lieshoff
 */

From source file parser.fp.MMSParser.java

/**
 * @author Bruno P. Kinoshita - http://www.kinoshita.eti.br
 * @since 0.1
 */
public class MMSParser implements UnaryFunction<String, Message> {

From source file parser.fp.SMSParser.java

/**
 * @author Bruno P. Kinoshita - http://www.kinoshita.eti.br
 * @since 0.1
 */
public class SMSParser implements UnaryFunction<String, Message> {