Class ClassFileLocator.Simple
java.lang.Object
net.bytebuddy.dynamic.ClassFileLocator.Simple
- All Implemented Interfaces:
Closeable, AutoCloseable, ClassFileLocator
- Enclosing interface:
ClassFileLocator
A simple class file locator that returns class files from a selection of given types.
-
Nested Class Summary
Nested classes/interfaces inherited from interface ClassFileLocator
ClassFileLocator.Compound, ClassFileLocator.Filtering, ClassFileLocator.ForClassLoader, ClassFileLocator.ForFolder, ClassFileLocator.ForInstrumentation, ClassFileLocator.ForJarFile, ClassFileLocator.ForModule, ClassFileLocator.ForModuleFile, ClassFileLocator.ForUrl, ClassFileLocator.MultiReleaseAware, ClassFileLocator.NoOp, ClassFileLocator.PackageDiscriminating, ClassFileLocator.Resolution, ClassFileLocator.Simple -
Field Summary
FieldsModifier and TypeFieldDescriptionThe class files that are known to this class file locator mapped by their type name.Fields inherited from interface ClassFileLocator
CLASS_FILE_EXTENSION, META_INF_VERSIONS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Locates the class file for a given type and returns the binary data of the class file.static ClassFileLocatorCreates a class file locator for a single known type.static ClassFileLocatorof(Map<TypeDescription, byte[]> binaryRepresentations) Creates a class file locator that represents all types of a dynamic type.static ClassFileLocatorof(DynamicType dynamicType) Creates a class file locator that represents all types of a dynamic type.static ClassFileLocatorofResources(Map<String, byte[]> binaryRepresentations) Creates a class file locator of a map of resources where class files are mapped by their path and file extension.
-
Field Details
-
classFiles
-
-
Constructor Details
-
Simple
-
-
Method Details
-
of
Creates a class file locator for a single known type.- Parameters:
typeName- The name of the type.binaryRepresentation- The binary representation of the type.- Returns:
- An appropriate class file locator.
-
of
Creates a class file locator that represents all types of a dynamic type.- Parameters:
dynamicType- The dynamic type to represent.- Returns:
- A class file locator representing the dynamic type's types.
-
of
Creates a class file locator that represents all types of a dynamic type.- Parameters:
binaryRepresentations- The binary representation of all types.- Returns:
- A class file locator representing the dynamic type's types.
-
ofResources
Creates a class file locator of a map of resources where class files are mapped by their path and file extension.- Parameters:
binaryRepresentations- A map of resource names to their binary representation.- Returns:
- A class file locator that finds class files within the map.
-
locate
Locates the class file for a given type and returns the binary data of the class file.- Specified by:
locatein interfaceClassFileLocator- Parameters:
name- The name of the type to locate a class file representation for.- Returns:
- Any binary representation of the type which might be illegal.
-
close
public void close()- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-