Uses of Interface
net.bytebuddy.NamingStrategy
Packages that use NamingStrategy
Package
Description
Byte Buddy is a library for creating Java classes at runtime of a Java program.
-
Uses of NamingStrategy in net.bytebuddy
Classes in net.bytebuddy that implement NamingStrategyModifier and TypeClassDescriptionstatic class
An abstract base implementation where the names of redefined and rebased types are retained.static class
A naming strategy that creates a name by prefixing a given class and its package with another package and by appending a random number to the class's simple name.static class
A naming strategy that appends a given suffix to a name, without a randomized element.static class
A naming strategy that creates a name by concatenating: The super classes package and name A given suffix string A random number Between all these elements, a$
sign is included into the name to improve readability.Fields in net.bytebuddy declared as NamingStrategyModifier and TypeFieldDescriptionprivate static final NamingStrategy
ByteBuddy.DEFAULT_NAMING_STRATEGY
The default naming strategy ornull
if no such strategy is set.protected final NamingStrategy
ByteBuddy.namingStrategy
The naming strategy to use.Methods in net.bytebuddy with parameters of type NamingStrategyModifier and TypeMethodDescriptionByteBuddy.with
(NamingStrategy namingStrategy) Creates a new configuration where new types are named by applying the given naming strategy.Constructors in net.bytebuddy with parameters of type NamingStrategyModifierConstructorDescriptionprotected
ByteBuddy
(ClassFileVersion classFileVersion, NamingStrategy namingStrategy, AuxiliaryType.NamingStrategy auxiliaryTypeNamingStrategy, AnnotationValueFilter.Factory annotationValueFilterFactory, AnnotationRetention annotationRetention, Implementation.Context.Factory implementationContextFactory, MethodGraph.Compiler methodGraphCompiler, InstrumentedType.Factory instrumentedTypeFactory, TypeValidation typeValidation, VisibilityBridgeStrategy visibilityBridgeStrategy, AsmClassReader.Factory classReaderFactory, AsmClassWriter.Factory classWriterFactory, LatentMatcher<? super MethodDescription> ignoredMethods) Creates a new Byte Buddy instance.