public enum GranularityLevel extends Enum<GranularityLevel>
Enum Constant and Description |
---|
BASICBLOCK |
CLASS |
LINE |
METHOD |
Modifier and Type | Method and Description |
---|---|
static GranularityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GranularityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GranularityLevel LINE
public static final GranularityLevel METHOD
public static final GranularityLevel CLASS
public static final GranularityLevel BASICBLOCK
public static GranularityLevel[] values()
for (GranularityLevel c : GranularityLevel.values()) System.out.println(c);
public static GranularityLevel 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 © 2010–2019 GZoltar. All rights reserved.