org.semanticweb.owlapi.formats.BinaryRdfOntologyFormatFactory Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.semanticweb.owlapi.formats;
import org.kohsuke.MetaInfServices;
/**
* @author Peter Ansell [email protected]
*
*/
@MetaInfServices(OWLOntologyFormatFactory.class)
public class BinaryRdfOntologyFormatFactory extends AbstractRioRDFOntologyFormatFactory implements RioRDFOntologyFormatFactory
{
public BinaryRdfOntologyFormatFactory()
{
super();
}
@Override
public RioRDFOntologyFormat getNewFormat()
{
return new BinaryRdfOntologyFormat();
}
@Override
public boolean isTextual()
{
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy