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

edu.stanford.protege.webprotege.forms.field.Repeatability Maven / Gradle / Ivy

package edu.stanford.protege.webprotege.forms.field;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 30/03/16
 */
public enum Repeatability {

    NON_REPEATABLE,

    REPEATABLE_VERTICALLY,

    REPEATABLE_HORIZONTALLY;

    public boolean isRepeatable() {
        return this != NON_REPEATABLE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy