Uses of Class
net.bytebuddy.implementation.EqualsMethod
Packages that use EqualsMethod
Package
Description
A package for types that allow for applying Byte Buddy transformation during a build process.
The implementation package contains any logic for intercepting method calls.
-
Uses of EqualsMethod in net.bytebuddy.build
Methods in net.bytebuddy.build that return EqualsMethodModifier and TypeMethodDescriptionprotected 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 EqualsMethodModifier and TypeMethodDescriptionstatic 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.withEnumerationTypedFieldsFirst()
Returns a new version of this equals method that compares fields with enumeration types prior to fields with non-enumeration types.EqualsMethod.withFieldOrder
(Comparator<? super FieldDescription.InDefinedShape> comparator) Applies the supplied comparator to determine an order for fields for being compared.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.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.EqualsMethod.withPrimitiveTypedFieldsFirst()
Returns a new version of this equals method that compares fields with primitive types prior to fields with non-primitive types.EqualsMethod.withPrimitiveWrapperTypedFieldsFirst()
Returns a new version of this equals method that compares fields with primitive wrapper types prior to fields with non-primitive wrapper types.EqualsMethod.withStringTypedFieldsFirst()