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

edu.stanford.protege.webprotege.diff.DiffOperation Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.diff;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 29/01/15
 */
public enum DiffOperation {

    ADD("Add", "\u2295"),

    REMOVE("Remove", "\u2296");

    private final String displayName;

    private final String symbol;

    DiffOperation(String displayName, String symbol) {
        this.displayName = displayName;
        this.symbol = symbol;
    }

    public String getDisplayName() {
        return displayName;
    }

    public String getSymbol() {
        return symbol;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy