| Package | Description | 
|---|---|
| net.bytebuddy.dynamic | This package contains classes and interfaces that are connected to writing the byte stream that represents a Java
 type that is dynamically created and for loading this type into a running JVM process. | 
| net.bytebuddy.dynamic.loading | This package contains classes that are responsible for class loading of classes that are represented by
  bytearrays. | 
| Constructor and Description | 
|---|
| ProtectionDomainWrapper(ProtectionDomain protectionDomain,
                       ByteArrayClassLoader.PersistenceHandler persistenceHandler,
                       boolean childFirst)Creates a new protection domain specific class loading wrapper. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected ByteArrayClassLoader.PersistenceHandler | ByteArrayClassLoader. persistenceHandlerThe persistence handler of this class loader. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ByteArrayClassLoader.PersistenceHandler | ByteArrayClassLoader.PersistenceHandler. valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ByteArrayClassLoader.PersistenceHandler[] | ByteArrayClassLoader.PersistenceHandler. values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Map<TypeDescription,Class<?>> | ByteArrayClassLoader. load(ClassLoader classLoader,
    Map<TypeDescription,byte[]> types,
    ProtectionDomain protectionDomain,
    ByteArrayClassLoader.PersistenceHandler persistenceHandler,
    boolean childFirst)Loads a given set of class descriptions and their binary representations. | 
| static ClassLoader | ByteArrayClassLoader. of(ClassLoader parent,
  Map<TypeDescription,byte[]> typeDefinitions,
  ProtectionDomain protectionDomain,
  ByteArrayClassLoader.PersistenceHandler persistenceHandler,
  boolean childFirst)Creates a new class loader for a given definition of classes. | 
| Constructor and Description | 
|---|
| ByteArrayClassLoader(ClassLoader parent,
                    Map<String,byte[]> typeDefinitions,
                    ProtectionDomain protectionDomain,
                    ByteArrayClassLoader.PersistenceHandler persistenceHandler)Creates a new class loader for a given definition of classes. | 
| ChildFirst(ClassLoader parent,
          Map<String,byte[]> typeDefinitions,
          ProtectionDomain protectionDomain,
          ByteArrayClassLoader.PersistenceHandler persistenceHandler)Creates a new child-first byte array class loader. | 
Copyright © 2014. All rights reserved.