org.semanticweb.owlapi.search.AnnotationVisitor Maven / Gradle / Ivy
package org.semanticweb.owlapi.search;
import static org.semanticweb.owlapi.util.OWLAPIStreamUtils.asUnorderedSet;
import java.util.Set;
import org.semanticweb.owlapi.model.HasAnnotations;
import org.semanticweb.owlapi.model.OWLAnnotation;
import org.semanticweb.owlapi.model.OWLAnnotationAssertionAxiom;
import org.semanticweb.owlapi.model.OWLAxiomVisitorEx;
import org.semanticweb.owlapi.util.CollectionFactory;
@SuppressWarnings("unchecked")
class AnnotationVisitor implements OWLAxiomVisitorEx> {
private final boolean value;
AnnotationVisitor(boolean value) {
this.value = value;
}
@Override
public Set doDefault(Object object) {
return asUnorderedSet(((HasAnnotations) object).annotations().map(this::get));
}
private C get(OWLAnnotation a) {
if (value) {
return (C) a.getValue();
}
return (C) a;
}
@Override
public Set visit(OWLAnnotationAssertionAxiom axiom) {
if (value) {
return CollectionFactory.createSet((C) axiom.getValue());
}
return CollectionFactory.createSet((C) axiom.getAnnotation());
}
}