org.obolibrary.macro.AbstractDataVisitorEx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of owlapi-oboformat Show documentation
Show all versions of owlapi-oboformat Show documentation
A java library for converting obo format documents to OWL, and for converting (a subset of) OWL to obo format. This version has been slightly modified to be included directly in the OWL API.
The upstream code for this module and its authors can be found at https://code.google.com/p/oboformat/.
The newest version!
package org.obolibrary.macro;
import static org.semanticweb.owlapi.util.OWLAPIStreamUtils.asList;
import java.util.List;
import org.semanticweb.owlapi.model.OWLDataComplementOf;
import org.semanticweb.owlapi.model.OWLDataFactory;
import org.semanticweb.owlapi.model.OWLDataIntersectionOf;
import org.semanticweb.owlapi.model.OWLDataOneOf;
import org.semanticweb.owlapi.model.OWLDataRange;
import org.semanticweb.owlapi.model.OWLDataUnionOf;
import org.semanticweb.owlapi.model.OWLDataVisitorEx;
import org.semanticweb.owlapi.model.OWLDatatype;
import org.semanticweb.owlapi.model.OWLDatatypeRestriction;
/**
* Data visitor.
*/
public class AbstractDataVisitorEx implements OWLDataVisitorEx {
final OWLDataFactory df;
protected AbstractDataVisitorEx(OWLDataFactory df) {
this.df = df;
}
@Override
public OWLDataRange visit(OWLDatatypeRestriction node) {
return node;
}
@Override
public OWLDataRange visit(OWLDataOneOf node) {
// Encode as a data union of and return result
return df.getOWLDataUnionOf(node.values().map(df::getOWLDataOneOf)).accept(this);
}
@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
List ops = asList(node.operands().map(op -> op.accept(this)));
return df.getOWLDataIntersectionOf(ops);
}
@Override
public OWLDataRange visit(OWLDataUnionOf node) {
List ops = asList(node.operands().map(op -> op.accept(this)));
return df.getOWLDataUnionOf(ops);
}
@Override
public OWLDataRange visit(OWLDatatype node) {
return node;
}
@Override
public OWLDataRange visit(OWLDataComplementOf node) {
return node;
}
}