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

com.jamonapi.utils.Command Maven / Gradle / Ivy

There is a newer version: 2.82
Show newest version
package com.jamonapi.utils;

/**
 * Simple interface that is used in the implementation of the Gang Of 4 Command pattern in Java.
 * Implement this Interface to pass a command to an internal iterator.
 **/
public interface Command {
    public void execute(Object value) throws Exception;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy