public static enum CoverageConfig.CoverageFormat extends Enum<CoverageConfig.CoverageFormat>
| Modifier and Type | Method and Description |
|---|---|
static CoverageConfig.CoverageFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoverageConfig.CoverageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoverageConfig.CoverageFormat html
public static final CoverageConfig.CoverageFormat sonar
public static CoverageConfig.CoverageFormat[] values()
for (CoverageConfig.CoverageFormat c : CoverageConfig.CoverageFormat.values()) System.out.println(c);
public static CoverageConfig.CoverageFormat 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 © 2024. All rights reserved.