| Modifier and Type | Method and Description |
|---|---|
java.util.List<DiffResult> |
DiffObjects.diff(java.util.Collection<T> beforeState,
java.util.Collection<T> afterState,
DiffComparator<T> matcher)
Execute the diff between two objects using annotations.
|
java.util.List<DiffResult> |
DiffObjects.diff(java.util.Collection<T> beforeState,
java.util.Collection<T> afterState,
DiffConfiguration configuration,
DiffComparator<T> matcher)
Execute the diff between two objects using a configuration.
|
boolean |
DiffObjects.isEquals(java.util.Collection<T> beforeState,
java.util.Collection<T> afterState,
DiffComparator<T> matcher)
Check if exists any difference between the two objects using annotations.
|
boolean |
DiffObjects.isEquals(java.util.Collection<T> beforeState,
java.util.Collection<T> afterState,
DiffConfiguration configuration,
DiffComparator<T> matcher)
Check if exists any difference between the two objects.
|
| Modifier and Type | Method and Description |
|---|---|
<F> DiffQueryMappingBuilder<T> |
DiffQueryMappingBuilder.mapping(java.lang.String field,
java.lang.Class<F> fieldClass,
DiffComparator<F> comparator)
Maps a new getter of the field for the class.
|
<F> DiffQueryMappingBuilder<T> |
DiffInstanceBuilder.mapping(java.lang.String field,
java.lang.Class<F> fieldClass,
DiffComparator<F> comparator)
Maps the getter of the field for the class.
|
<F> DiffQueryMappingBuilder<T> |
DiffBuilder.mapping(java.lang.String field,
java.lang.Class<F> fieldClass,
DiffComparator<F> comparator)
Maps the getter of the field for the class.
|
<F> DiffQueryMappingBuilder<T> |
DiffMappingBuilder.mapping(java.lang.String field,
java.lang.Class<F> fieldClass,
DiffComparator<F> comparator)
Maps the getter of the field for the class.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EqualsComparator<T>
Check two objects for equality using the equals method implementation.
|
class |
IndexComparator<T>
Check two objects for equality using the equals method implementation.
|
| Modifier and Type | Method and Description |
|---|---|
DiffComparator<?> |
DiffMetadata.getCollectionComparator() |
DiffComparator<?> |
DiffMetadata.getComparator() |
| Constructor and Description |
|---|
DiffMetadata(java.lang.String value,
java.lang.reflect.Method method,
DiffStrategyType diffStrategyType,
DiffComparator<?> comparator) |
DiffMetadata(java.lang.String value,
java.lang.reflect.Method method,
DiffStrategyType diffStrategyType,
DiffComparator<?> comparator,
DiffComparator<?> collectionComparator) |
DiffMetadata(java.lang.String value,
java.lang.reflect.Method method,
DiffStrategyType diffStrategyType,
DiffComparator<?> comparator,
DiffComparator<?> collectionComparator) |
Copyright © 2018. All rights reserved.