Uses of Class
net.bytebuddy.implementation.ToStringMethod
Packages that use ToStringMethod
Package
Description
The implementation package contains any logic for intercepting method calls.
-
Uses of ToStringMethod in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation that return ToStringMethodModifier and TypeMethodDescriptionstatic ToStringMethod
ToStringMethod.prefixedBy
(String prefix) Creates aObject.toString()
implementation that is prefixed by the supplied string.static ToStringMethod
ToStringMethod.prefixedBy
(ToStringMethod.PrefixResolver prefixResolver) Creates aObject.toString()
implementation that is prefixed by the string that is supplied by the given prefix resolver.static ToStringMethod
ToStringMethod.prefixedByCanonicalClassName()
Creates aObject.toString()
implementation that is prefixed by the canonical class name of the instrumented type.static ToStringMethod
ToStringMethod.prefixedByFullyQualifiedClassName()
Creates aObject.toString()
implementation that is prefixed by the fully qualified class name of the instrumented type.static ToStringMethod
ToStringMethod.prefixedBySimpleClassName()
Creates aObject.toString()
implementation that is prefixed by the simple class name of the instrumented type.ToStringMethod.withIgnoredFields
(ElementMatcher<? super FieldDescription.InDefinedShape> ignored) Returns a new version of this toString method implementation that ignores the specified fields additionally to any previously specified fields.