public static enum Instrumentation.Target.MethodLookup.Default extends Enum<Instrumentation.Target.MethodLookup.Default> implements Instrumentation.Target.MethodLookup
Instrumentation.Target.MethodLookup
.Instrumentation.Target.MethodLookup.Default
Enum Constant and Description |
---|
EXACT
An exact method lookup which directly invokes the given method.
|
MOST_SPECIFIC
Looks up a most specific method by a method signature.
|
Modifier and Type | Method and Description |
---|---|
static Instrumentation.Target.MethodLookup.Default |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Instrumentation.Target.MethodLookup.Default[] |
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
resolve
public static final Instrumentation.Target.MethodLookup.Default EXACT
public static final Instrumentation.Target.MethodLookup.Default MOST_SPECIFIC
public static Instrumentation.Target.MethodLookup.Default[] values()
for (Instrumentation.Target.MethodLookup.Default c : Instrumentation.Target.MethodLookup.Default.values()) System.out.println(c);
public static Instrumentation.Target.MethodLookup.Default 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 © 2014. All rights reserved.