public enum CoverageRealm extends java.lang.Enum<CoverageRealm>
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
realmName
The configuration DSL name for this realm.
|
java.lang.String |
tagName
The name of the XML tag (in the Jacoco coverage XML report ) for this realm.
|
| Modifier and Type | Method and Description |
|---|---|
static CoverageRealm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CoverageRealm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoverageRealm FILE
public static final CoverageRealm CLASS
public static final CoverageRealm PACKAGE
public static final CoverageRealm REPORT
public final java.lang.String tagName
public final java.lang.String realmName
public static CoverageRealm[] values()
for (CoverageRealm c : CoverageRealm.values()) System.out.println(c);
public static CoverageRealm valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null