
org.coode.dlquery.ResultsSection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.coode.dlquery Show documentation
Show all versions of org.coode.dlquery Show documentation
A plug-in for Protege that provides a reasoner-backed query capability.
package org.coode.dlquery;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 19/09/2013
*/
public enum ResultsSection {
DIRECT_SUPER_CLASSES("Direct superclasses"),
DIRECT_SUB_CLASSES("Direct subclasses"),
SUPER_CLASSES("Superclasses"),
SUB_CLASSES("Subclasses"),
EQUIVALENT_CLASSES("Equivalent classes"),
INSTANCES("Instances");
private final String displayName;
private ResultsSection(String displayName) {
this.displayName = checkNotNull(displayName);
}
public String getDisplayName() {
return displayName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy