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