public static enum MethodLookupEngine.Default.DefaultMethodLookup extends Enum<MethodLookupEngine.Default.DefaultMethodLookup>
| Enum Constant and Description | 
|---|
| DISABLEDDisables the extraction of default methods. | 
| ENABLEDEnables 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. | 
| 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.Copyright © 2014. All rights reserved.