public static enum MethodLookupEngine.Default.DefaultMethodLookup extends Enum<MethodLookupEngine.Default.DefaultMethodLookup>
Enum Constant and Description |
---|
DISABLED
Disables the extraction of default methods.
|
ENABLED
Enables the extraction of default methods.
|
Modifier and Type | Method and Description |
---|---|
abstract Map<TypeDescription,Set<MethodDescription>> |
apply(MethodLookupEngine.Default.MethodBucket methodBucket,
Collection<TypeDescription> interfaces,
Collection<TypeDescription> defaultMethodRelevantInterfaces)
Applies default method extraction.
|
String |
toString() |
static MethodLookupEngine.Default.DefaultMethodLookup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodLookupEngine.Default.DefaultMethodLookup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodLookupEngine.Default.DefaultMethodLookup ENABLED
public static final MethodLookupEngine.Default.DefaultMethodLookup DISABLED
public static MethodLookupEngine.Default.DefaultMethodLookup[] values()
for (MethodLookupEngine.Default.DefaultMethodLookup c : MethodLookupEngine.Default.DefaultMethodLookup.values()) System.out.println(c);
public static MethodLookupEngine.Default.DefaultMethodLookup 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 nullpublic abstract Map<TypeDescription,Set<MethodDescription>> apply(MethodLookupEngine.Default.MethodBucket methodBucket, Collection<TypeDescription> interfaces, Collection<TypeDescription> defaultMethodRelevantInterfaces)
methodBucket
- The method bucket that is used for performing a method extraction.interfaces
- The interfaces of the instrumented type.defaultMethodRelevantInterfaces
- The interfaces of the instrumented type that are relevant for
default method extraction.public String toString()
toString
in class Enum<MethodLookupEngine.Default.DefaultMethodLookup>
Copyright © 2014–2015. All rights reserved.