public enum Metrics extends Enum<Metrics>
| Modifier and Type | Class and Description |
|---|---|
static interface |
Metrics.Action |
| Enum Constant and Description |
|---|
DataCoverage |
LineCoverage |
PathCoverage |
| Modifier and Type | Field and Description |
|---|---|
boolean |
active |
String |
htmlDescription |
String |
itemName |
| Modifier and Type | Method and Description |
|---|---|
static void |
performAction(Metrics.Action action) |
String |
toString() |
static Metrics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Metrics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Metrics DataCoverage
public static final Metrics LineCoverage
public static final Metrics PathCoverage
public final boolean active
@NotNull public final String htmlDescription
@NotNull public final String itemName
public static void performAction(@NotNull
Metrics.Action action)
public static Metrics 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 nullpublic static Metrics[] values()
for (Metrics c : Metrics.values()) System.out.println(c);
Copyright © 2014. All rights reserved.