public static enum RoutineSummary.Completeness extends Enum<RoutineSummary.Completeness>
| Enum Constant and Description |
|---|
COMPLETE
No known gaps in the summary-local extraction/evaluation pass.
|
OPAQUE
Unanalyzable (parse failure etc.); contributes no candidates.
|
PARTIAL
Known summary-local gaps, with reasons attached.
|
| Modifier and Type | Method and Description |
|---|---|
static RoutineSummary.Completeness |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutineSummary.Completeness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutineSummary.Completeness COMPLETE
public static final RoutineSummary.Completeness PARTIAL
public static final RoutineSummary.Completeness OPAQUE
public static RoutineSummary.Completeness[] values()
for (RoutineSummary.Completeness c : RoutineSummary.Completeness.values()) System.out.println(c);
public static RoutineSummary.Completeness 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 null