All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.util.tables.diff.DiffKind Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy