Uses of Class
net.bytebuddy.dynamic.loading.MultipleParentClassLoader.Builder
Packages that use MultipleParentClassLoader.Builder
Package
Description
This package contains classes that are responsible for class loading of classes that are represented by
byte arrays.-
Uses of MultipleParentClassLoader.Builder in net.bytebuddy.dynamic.loading
Methods in net.bytebuddy.dynamic.loading that return MultipleParentClassLoader.BuilderModifier and TypeMethodDescriptionAppends the class loaders of the given types.MultipleParentClassLoader.Builder.append(ClassLoader... classLoader) Appends the given class loaders if they were not yet collected.MultipleParentClassLoader.Builder.append(Collection<? extends Class<?>> types) Appends the class loaders of the given types if those class loaders were not yet collected.MultipleParentClassLoader.Builder.append(List<? extends ClassLoader> classLoaders) Appends the given class loaders if they were not yet appended.MultipleParentClassLoader.Builder.appendMostSpecific(Class<?>... type) Appends the class loaders of the given types but filters any duplicates within the hierarchy of class loaders.MultipleParentClassLoader.Builder.appendMostSpecific(ClassLoader... classLoader) Appends the given class loaders but removes any class loaders that are the parent of any previously registered class loader.MultipleParentClassLoader.Builder.appendMostSpecific(Collection<? extends Class<?>> types) Appends the class loaders of the given types but filters any duplicates within the hierarchy of class loaders.MultipleParentClassLoader.Builder.appendMostSpecific(List<? extends ClassLoader> classLoaders) Appends the given class loaders but removes any class loaders that are the parent of any previously registered class loader.MultipleParentClassLoader.Builder.filter(ElementMatcher<? super ClassLoader> matcher) Only retains all class loaders that match the given matcher.