Uses of Interface
org.hibernate.bytecode.spi.BytecodeProvider
-
Packages that use BytecodeProvider Package Description org.hibernate.bytecode.enhance.spi Package defining bytecode code enhancement (instrumentation) support.org.hibernate.bytecode.internal org.hibernate.bytecode.internal.bytebuddy Byte Buddy support internalsorg.hibernate.bytecode.internal.none -
-
Uses of BytecodeProvider in org.hibernate.bytecode.enhance.spi
Methods in org.hibernate.bytecode.enhance.spi that return BytecodeProvider Modifier and Type Method Description default BytecodeProvider
EnhancementContext. getBytecodeProvider()
Allows to force the use of a specific instance of BytecodeProvider to perform the enhancement. -
Uses of BytecodeProvider in org.hibernate.bytecode.internal
Fields in org.hibernate.bytecode.internal with type parameters of type BytecodeProvider Modifier and Type Field Description static StandardServiceInitiator<BytecodeProvider>
BytecodeProviderInitiator. INSTANCE
Singleton accessMethods in org.hibernate.bytecode.internal that return BytecodeProvider Modifier and Type Method Description static BytecodeProvider
BytecodeProviderInitiator. buildDefaultBytecodeProvider()
static BytecodeProvider
BytecodeProviderInitiator. getBytecodeProvider(Iterable<BytecodeProvider> bytecodeProviders)
BytecodeProvider
BytecodeProviderInitiator. initiateService(Map<String,Object> configurationValues, ServiceRegistryImplementor registry)
Methods in org.hibernate.bytecode.internal that return types with arguments of type BytecodeProvider Modifier and Type Method Description Class<BytecodeProvider>
BytecodeProviderInitiator. getServiceInitiated()
Method parameters in org.hibernate.bytecode.internal with type arguments of type BytecodeProvider Modifier and Type Method Description static BytecodeProvider
BytecodeProviderInitiator. getBytecodeProvider(Iterable<BytecodeProvider> bytecodeProviders)
Constructors in org.hibernate.bytecode.internal with parameters of type BytecodeProvider Constructor Description SessionFactoryObserverForBytecodeEnhancer(BytecodeProvider bytecodeProvider)
-
Uses of BytecodeProvider in org.hibernate.bytecode.internal.bytebuddy
Classes in org.hibernate.bytecode.internal.bytebuddy that implement BytecodeProvider Modifier and Type Class Description class
BytecodeProviderImpl
-
Uses of BytecodeProvider in org.hibernate.bytecode.internal.none
Classes in org.hibernate.bytecode.internal.none that implement BytecodeProvider Modifier and Type Class Description class
BytecodeProviderImpl
This BytecodeProvider represents the "no-op" enhancer; mostly useful as an optimisation when not needing any byte code optimisation applied, for example when the entities have been enhanced at compile time.
-