nl.uu.cs.ape.models.enums.ConfigEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of APE Show documentation
Show all versions of APE Show documentation
APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.
The newest version!
package nl.uu.cs.ape.models.enums;
/**
* Defines the values describing the quantity of covered cases.
*
* Values: [{@code NONE}, {@code ONE}, {@code ALL}]
* @author Vedran Kasalica
*/
public enum ConfigEnum {
/**
* None of the cases should be covered.
*/
NONE,
/**
* One case should be covered.
*/
ONE,
/**
* All cases should be covered.
*/
ALL
}