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

org.semanticweb.owlapi.model.MissingOntologyHeaderStrategy Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package org.semanticweb.owlapi.model;

/**
 * what action to take if the ontology header is missing.
 */
public enum MissingOntologyHeaderStrategy implements ByName {
    //@formatter:off
    /** Include triples.       */       INCLUDE_GRAPH,
    /** Keep import structure. */       IMPORT_GRAPH;
    //@formatter:on
    @Override
    public MissingOntologyHeaderStrategy byName(CharSequence name) {
        return valueOf(name.toString());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy