public static enum AsmClassProvider.DETAIL_LEVEL extends Enum<AsmClassProvider.DETAIL_LEVEL>
| Enum Constant and Description |
|---|
NOTHING
Nothing is loaded from the bytecode
|
STRUCTURE
Superclass and interfaces are loaded along with fields and methods but not types used by fields or methods
|
STRUCTURE_AND_CALLS
Calls to other methods are loaded
|
| Modifier and Type | Method and Description |
|---|---|
static AsmClassProvider.DETAIL_LEVEL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsmClassProvider.DETAIL_LEVEL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsmClassProvider.DETAIL_LEVEL NOTHING
public static final AsmClassProvider.DETAIL_LEVEL STRUCTURE
public static final AsmClassProvider.DETAIL_LEVEL STRUCTURE_AND_CALLS
public static AsmClassProvider.DETAIL_LEVEL[] values()
for (AsmClassProvider.DETAIL_LEVEL c : AsmClassProvider.DETAIL_LEVEL.values()) System.out.println(c);
public static AsmClassProvider.DETAIL_LEVEL 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 © 2012–2015 SonarSource. All rights reserved.