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

edu.stanford.protege.webprotege.download.DownloadFormatExtension Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package edu.stanford.protege.webprotege.download;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 24/07/2013 */ public enum DownloadFormatExtension { owl("RDF/XML"), ttl("Turtle"), owx("OWL/XML"), omn("Manchester OWL Syntax"), ofn("Functional OWL Syntax"); private final String displayName; DownloadFormatExtension(String displayName) { this.displayName = displayName; } public String getDisplayName() { return displayName; } public String getExtension() { return name(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy