public enum Aggregator extends java.lang.Enum<Aggregator>
Enum Constant and Description |
---|
COMPONENT
Aggregate on component level.
|
ELEMENT
Aggregate to level of elements (lowest aggregation level).
|
FIELD
Aggregate to level of fields.
|
METHOD
Aggregate to level of methods.
|
MODULE
Aggregate to level of module.
|
MODULE_NAMESPACE
Aggregate on module scope logical namespaces.
|
NAMED_TYPE
Aggregate to level of named types (including nested types).
|
ROUTINE
Aggregate to level of methods and functions (C/C++).
|
SOURCE_FILE
Aggregate on source file level.
|
SYSTEM_NAMESPACE
Aggregate on system wide logical namespaces.
|
TOPLEVEL_TYPE
Aggregate to level of top level types.
|
TYPE
Aggregate to level of types (including anonymous classes in Java).
|
Modifier and Type | Method and Description |
---|---|
static Aggregator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Aggregator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregator ELEMENT
public static final Aggregator TYPE
public static final Aggregator NAMED_TYPE
public static final Aggregator TOPLEVEL_TYPE
public static final Aggregator METHOD
public static final Aggregator ROUTINE
public static final Aggregator FIELD
public static final Aggregator SYSTEM_NAMESPACE
public static final Aggregator MODULE_NAMESPACE
public static final Aggregator MODULE
public static final Aggregator SOURCE_FILE
public static final Aggregator COMPONENT
public static Aggregator[] values()
for (Aggregator c : Aggregator.values()) System.out.println(c);
public static Aggregator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null