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

nl.uu.cs.ape.automaton.Automaton Maven / Gradle / Ivy

Go to download

APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.

There is a newer version: 2.3.0
Show newest version
package nl.uu.cs.ape.automaton;

import java.util.List;

/**
 * The {@code Automaton} interface is used to represent general interface that
 * should be implemented by any interface.
 *
 * @author Vedran Kasalica
 */
public interface Automaton {

    /**
     * Gets all states as a List.
     *
     * @return All the States.
     */
    List getAllStates();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy