public static enum CycloMetric.Version extends Enum<CycloMetric.Version> implements MetricVersion
Enum Constant and Description |
---|
IGNORE_BOOLEAN_PATHS
Do not count the paths in boolean expressions as decision points.
|
Modifier and Type | Method and Description |
---|---|
static CycloMetric.Version |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CycloMetric.Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
name
public static final CycloMetric.Version IGNORE_BOOLEAN_PATHS
public static CycloMetric.Version[] values()
for (CycloMetric.Version c : CycloMetric.Version.values()) System.out.println(c);
public static CycloMetric.Version 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 © 2002–2017 PMD. All rights reserved.