public static enum InstrumentationConfig.MethodModifier extends Enum<InstrumentationConfig.MethodModifier>
| Enum Constant and Description |
|---|
ABSTRACT |
NOT_STATIC |
PACKAGE_PRIVATE |
PRIVATE |
PROTECTED |
PUBLIC |
STATIC |
| Modifier and Type | Method and Description |
|---|---|
static InstrumentationConfig.MethodModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstrumentationConfig.MethodModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstrumentationConfig.MethodModifier PUBLIC
public static final InstrumentationConfig.MethodModifier PRIVATE
public static final InstrumentationConfig.MethodModifier PROTECTED
public static final InstrumentationConfig.MethodModifier PACKAGE_PRIVATE
public static final InstrumentationConfig.MethodModifier STATIC
public static final InstrumentationConfig.MethodModifier NOT_STATIC
public static final InstrumentationConfig.MethodModifier ABSTRACT
public static InstrumentationConfig.MethodModifier[] values()
for (InstrumentationConfig.MethodModifier c : InstrumentationConfig.MethodModifier.values()) System.out.println(c);
public static InstrumentationConfig.MethodModifier 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 © 2011–2015 Glowroot contributors. All rights reserved.