org.sonar.ide.shared.coverage
Enum CoverageData.CoverageStatus
java.lang.Object
java.lang.Enum<CoverageData.CoverageStatus>
org.sonar.ide.shared.coverage.CoverageData.CoverageStatus
- All Implemented Interfaces:
- Serializable, Comparable<CoverageData.CoverageStatus>
- Enclosing class:
- CoverageData
public static enum CoverageData.CoverageStatus
- extends Enum<CoverageData.CoverageStatus>
NO_DATA
public static final CoverageData.CoverageStatus NO_DATA
FULLY_COVERED
public static final CoverageData.CoverageStatus FULLY_COVERED
PARTIALLY_COVERED
public static final CoverageData.CoverageStatus PARTIALLY_COVERED
UNCOVERED
public static final CoverageData.CoverageStatus UNCOVERED
values
public static CoverageData.CoverageStatus[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (CoverageData.CoverageStatus c : CoverageData.CoverageStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CoverageData.CoverageStatus valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2010 Evgeny Mandrikov. All Rights Reserved.