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

hudson.plugins.clover.targets.CoverageMetric Maven / Gradle / Ivy

There is a newer version: 4.9.1
Show newest version
package hudson.plugins.clover.targets;

/**
 * Created by IntelliJ IDEA.
 *
 * @author connollys
 * @since 10-Jul-2007 14:59:50
 */
public enum CoverageMetric {
    METHOD("Methods"),
    CONDITIONAL("Conditionals"),
    STATEMENT("Statements"),
    ELEMENT("Elements");

    private String name;

    CoverageMetric(String name) {
        this.name = name;
    }

    public String toString() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy