Uses of Interface
net.bytebuddy.NamingStrategy.Suffixing.BaseNameResolver
Packages that use NamingStrategy.Suffixing.BaseNameResolver
Package
Description
Byte Buddy is a library for creating Java classes at runtime of a Java program.
-
Uses of NamingStrategy.Suffixing.BaseNameResolver in net.bytebuddy
Subinterfaces of NamingStrategy.Suffixing.BaseNameResolver in net.bytebuddyModifier and TypeInterfaceDescriptionstatic interface
Deprecated.Classes in net.bytebuddy that implement NamingStrategy.Suffixing.BaseNameResolverModifier and TypeClassDescriptionstatic class
A base name resolver that simply returns a fixed value.static class
Uses a specific type's name as the resolved name.static enum
Uses the unnamed type's super type's name as the resolved name.static class
A base name resolver that adds the name of the class that is invokingByteBuddy
.static class
Deprecated.static class
Deprecated.static enum
Deprecated.Fields in net.bytebuddy declared as NamingStrategy.Suffixing.BaseNameResolverModifier and TypeFieldDescriptionprivate final NamingStrategy.Suffixing.BaseNameResolver
NamingStrategy.Suffixing.baseNameResolver
A resolver for the base name for naming the unnamed type.private final NamingStrategy.Suffixing.BaseNameResolver
NamingStrategy.Suffixing.BaseNameResolver.WithCallerSuffix.delegate
The base name resolver that is resolving the base name.Constructors in net.bytebuddy with parameters of type NamingStrategy.Suffixing.BaseNameResolverModifierConstructorDescriptionSuffixing
(String suffix, NamingStrategy.Suffixing.BaseNameResolver baseNameResolver) Creates an immutable naming strategy with a given suffix but moves types that subclass types within thejava.lang
package into Byte Buddy's package namespace.Suffixing
(String suffix, NamingStrategy.Suffixing.BaseNameResolver baseNameResolver, String javaLangPackagePrefix) Creates an immutable naming strategy with a given suffix but moves types that subclass types within thejava.lang
package into a given namespace.SuffixingRandom
(String suffix, NamingStrategy.Suffixing.BaseNameResolver baseNameResolver) Creates an immutable naming strategy with a given suffix but moves types that subclass types within thejava.lang
package into Byte Buddy's package namespace.SuffixingRandom
(String suffix, NamingStrategy.Suffixing.BaseNameResolver baseNameResolver, String javaLangPackagePrefix) Creates an immutable naming strategy with a given suffix but moves types that subclass types within thejava.lang
package into a given namespace.SuffixingRandom
(String suffix, NamingStrategy.Suffixing.BaseNameResolver baseNameResolver, String javaLangPackagePrefix, RandomString randomString) Creates an immutable naming strategy with a given suffix but moves types that subclass types within thejava.lang
package into a given namespace.Creates a new base name resolver that appends a caller suffix.
NamingStrategy.Suffixing.BaseNameResolver
.