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