Javadoc
This commit is contained in:
parent
31d0cbbe3c
commit
61edac32f0
|
@ -56,12 +56,16 @@ import org.apache.commons.lang3.ObjectUtils;
|
|||
* {@code DiffResult.toString()} method. This style choice can be overridden by
|
||||
* calling {@link DiffResult#toString(ToStringStyle)}.
|
||||
* </p>
|
||||
* <p>
|
||||
* See {@link ReflectionDiffBuilder} for a reflection based version of this class.
|
||||
* </p>
|
||||
*
|
||||
* @param <T> type of the left and right object.
|
||||
* @see Diffable
|
||||
* @see Diff
|
||||
* @see DiffResult
|
||||
* @see ToStringStyle
|
||||
* @see ReflectionDiffBuilder
|
||||
* @since 3.3
|
||||
*/
|
||||
public class DiffBuilder<T> implements Builder<DiffResult<T>> {
|
||||
|
|
|
@ -59,12 +59,16 @@ import org.apache.commons.lang3.reflect.FieldUtils;
|
|||
* {@code DiffResult.toString()} method. This style choice can be overridden by
|
||||
* calling {@link DiffResult#toString(ToStringStyle)}.
|
||||
* </p>
|
||||
* <p>
|
||||
* See {@link DiffBuilder} for a non-reflection based version of this class.
|
||||
* </p>
|
||||
* @param <T>
|
||||
* type of the left and right object to diff.
|
||||
* @see Diffable
|
||||
* @see Diff
|
||||
* @see DiffResult
|
||||
* @see ToStringStyle
|
||||
* @see DiffBuilder
|
||||
* @since 3.6
|
||||
*/
|
||||
public class ReflectionDiffBuilder<T> implements Builder<DiffResult<T>> {
|
||||
|
|
Loading…
Reference in New Issue