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

edu.stanford.protege.webprotege.forms.ValidationStatus Maven / Gradle / Ivy

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

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2020-10-01
 */
public enum ValidationStatus {

    VALID,

    INVALID;

    public boolean isInvalid() {
        return this.equals(INVALID);
    }

    public boolean isValid() {
        return this.equals(VALID);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy