Uses of Class
net.bytebuddy.implementation.EqualsMethod
-
Packages that use EqualsMethod Package Description net.bytebuddy.build A package for types that allow for applying Byte Buddy transformation during a build process.net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of EqualsMethod in net.bytebuddy.build
Methods in net.bytebuddy.build that return EqualsMethod Modifier and Type Method Description protected abstract EqualsMethod
HashCodeAndEqualsPlugin.Enhance.InvokeSuper. equalsMethod(TypeDescription instrumentedType)
Resolves the equals method to use. -
Uses of EqualsMethod in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation that return EqualsMethod Modifier and Type Method Description static EqualsMethod
EqualsMethod. isolated()
Creates an equals method implementation that does not invoke the super class'sObject.equals(Object)
method.static EqualsMethod
EqualsMethod. requiringSuperClassEquality()
Creates an equals implementation that invokes the super class'sObject.equals(Object)
method first.EqualsMethod
EqualsMethod. withIgnoredFields(ElementMatcher<? super FieldDescription.InDefinedShape> ignored)
Returns a new version of this equals method implementation that ignores the specified fields additionally to any previously specified fields.EqualsMethod
EqualsMethod. withNonNullableFields(ElementMatcher<? super FieldDescription.InDefinedShape> nonNullable)
Returns a new version of this equals method implementation that does not apply anull
value check for the specified fields if they have a reference type additionally to any previously specified fields.
-