cdc.util.tables.diff.DiffKind Maven / Gradle / Ivy
package cdc.util.tables.diff;
/**
* Enumeration of possible comparison results.
*
* @author Damien Carbonne
*/
public enum DiffKind {
/** Contents are the same. */
SAME,
/** Content was added. */
ADDED,
/** Content was removed. */
REMOVED,
/** Content was changed. */
CHANGED
}