Codota Logo
OWLEquivalentClassesAxiom.getAnnotations
Code IndexAdd Codota to your IDE (free)

How to use
getAnnotations
method
in
org.semanticweb.owlapi.model.OWLEquivalentClassesAxiom

Best Java code snippets using org.semanticweb.owlapi.model.OWLEquivalentClassesAxiom.getAnnotations (Showing top 6 results out of 315)

  • Common ways to obtain OWLEquivalentClassesAxiom
private void myMethod () {
OWLEquivalentClassesAxiom o =
  • Codota IconOWLDataFactory oWLDataFactory;OWLClassExpression clsA;OWLClassExpression clsB;oWLDataFactory.getOWLEquivalentClassesAxiom(clsA, clsB)
  • Codota IconOWLDataFactory oWLDataFactory;Set classExpressions;oWLDataFactory.getOWLEquivalentClassesAxiom(classExpressions)
  • Codota IconOWLDataFactory oWLDataFactory;Collection collection;oWLDataFactory.getOWLEquivalentClassesAxiom(collection)
  • Smart code suggestions by Codota
}
origin: net.sourceforge.owlapi/owlapi-gwt-client-side-emul

@Override
public void visit(OWLEquivalentClassesAxiom axiom) {
  hashCode = primes[13];
  hashCode = hashCode * MULT + axiom.getClassExpressions().hashCode();
  hashCode = hashCode * MULT + axiom.getAnnotations().hashCode();
}
origin: net.sourceforge.owlapi/owlapi-gwt-supersource

@Override
public void visit(OWLEquivalentClassesAxiom axiom) {
  hashCode = 53;
  hashCode = hashCode * MULT + axiom.getClassExpressions().hashCode();
  hashCode = hashCode * MULT + axiom.getAnnotations().hashCode();
}
origin: net.sourceforge.owlapi/owlapi

public void visit(OWLEquivalentClassesAxiom axiom) {
  hashCode = 53;
  hashCode = hashCode * MULT + axiom.getClassExpressions().hashCode();
  hashCode = hashCode * MULT + axiom.getAnnotations().hashCode();
}
origin: net.sourceforge.owlapi/owlapi

if (isDisplayed(ax)) {
  for (OWLClassExpression equivCls : ax.getClassExpressionsMinus(cls)) {
    equivalentClasses.put(equivCls, ax.getAnnotations());
origin: net.sourceforge.owlapi/owlapi

if (ax.getClassExpressions().size() > 2) {
  Map<Object, Set<OWLAnnotation>> map = new HashMap<Object, Set<OWLAnnotation>>();
  map.put(ax.getClassExpressions(), ax.getAnnotations());
  writeSection(EQUIVALENT_CLASSES, map, ",", false, ontology);
origin: net.sourceforge.owlapi/oboformat-included-owlapi

  c.setValue(cls2);
  f.addClause(c);
  addQualifiers(c, ax.getAnnotations());
} else if (ce2 instanceof OWLObjectUnionOf) {
  List<OWLClassExpression> list2 = ((OWLObjectUnionOf) ce2)
    addQualifiers(c, ax.getAnnotations());
        c.addQualifierValue(new QualifierValue("all_only", allOnly.toString()));
      addQualifiers(c, ax.getAnnotations());
org.semanticweb.owlapi.modelOWLEquivalentClassesAxiomgetAnnotations

Popular methods of OWLEquivalentClassesAxiom

  • getClassExpressions
  • classExpressions
  • getClassExpressionsMinus
  • asOWLSubClassOfAxioms
  • accept
  • namedClasses
    Gets the named classes (excluding owl:Thing and owl:Nothing) that are in this equivalent classes axi
  • getNamedClasses
    Gets the named classes (excluding owl:Thing and owl:Nothing) that are in this equivalent classes axi
  • annotations
  • getClassExpressionsAsList
  • containsOWLThing
    Determines if this class axiom makes a class expression equivalent to thing.
  • contains
  • containsOWLNothing
    Determines if this class axiom makes a class expression equivalent to nothing.
  • contains,
  • containsOWLNothing,
  • getAxiomType,
  • operands,
  • splitToAnnotatedPairs,
  • allMatch,
  • asPairwiseAxioms,
  • containsNamedEquivalentClass,
  • getAxiomWithoutAnnotations

Popular in Java

  • Finding current android device location
  • compareTo (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • getContentResolver (Context)
  • String (java.lang)
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • TreeSet (java.util)
    A NavigableSet implementation based on a TreeMap. The elements are ordered using their Comparable, o
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now