public enum StandardStatistic extends Enum<StandardStatistic>
| Enum Constant and Description |
|---|
Checkstyle |
Cpd |
Findbugs |
JaCoCo |
Pmd |
| Modifier and Type | Method and Description |
|---|---|
Stat |
read(org.apache.maven.plugin.logging.Log log,
File srcDir,
File targetDir) |
static StandardStatistic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardStatistic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardStatistic Checkstyle
public static final StandardStatistic Cpd
public static final StandardStatistic Pmd
public static final StandardStatistic Findbugs
public static final StandardStatistic JaCoCo
public static StandardStatistic[] values()
for (StandardStatistic c : StandardStatistic.values()) System.out.println(c);
public static StandardStatistic valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.