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

org.coode.dlquery.ResultsSection Maven / Gradle / Ivy

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