Tabnine Logo
OWLDisjointUnionAxiom.annotations
Code IndexAdd Tabnine to your IDE (free)

How to use
annotations
method
in
org.semanticweb.owlapi.model.OWLDisjointUnionAxiom

Best Java code snippets using org.semanticweb.owlapi.model.OWLDisjointUnionAxiom.annotations (Showing top 7 results out of 315)

origin: net.sourceforge.owlapi/owlapi-distribution

/**
 * Builder initialized from an existing object.
 *
 * @param expected the existing object
 * @param df data factory
 */
public BuilderDisjointUnion(OWLDisjointUnionAxiom expected, OWLDataFactory df) {
  this(df);
  withClass(expected.getOWLClass()).withItems(expected.classExpressions())
    .withAnnotations(expected
      .annotations());
}
origin: net.sourceforge.owlapi/owlapi-fixers

/**
 * Builder initialized from an existing object.
 * 
 * @param expected
 *        the existing object
 * @param df
 *        data factory
 */
public BuilderDisjointUnion(OWLDisjointUnionAxiom expected, OWLDataFactory df) {
  this(df);
  withClass(expected.getOWLClass()).withItems(expected.classExpressions())
    .withAnnotations(expected.annotations());
}
origin: owlcs/owlapi

/**
 * Builder initialized from an existing object.
 *
 * @param expected the existing object
 * @param df data factory
 */
public BuilderDisjointUnion(OWLDisjointUnionAxiom expected, OWLDataFactory df) {
  this(df);
  withClass(expected.getOWLClass()).withItems(expected.classExpressions())
    .withAnnotations(expected
      .annotations());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

/**
 * Builder initialized from an existing object.
 *
 * @param expected the existing object
 * @param df data factory
 */
public BuilderDisjointUnion(OWLDisjointUnionAxiom expected, OWLDataFactory df) {
  this(df);
  withClass(expected.getOWLClass()).withItems(expected.classExpressions())
    .withAnnotations(expected
      .annotations());
}
origin: owlcs/owlapi

@Override
public Object visit(OWLDisjointUnionAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLDisjointUnionAxiom(t(axiom.getOWLClass()), t(axiom
      .classExpressions()), t(axiom.annotations())));
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public Object visit(OWLDisjointUnionAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLDisjointUnionAxiom(t(axiom.getOWLClass()), t(axiom
      .classExpressions()), t(axiom.annotations())));
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public Object visit(OWLDisjointUnionAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLDisjointUnionAxiom(t(axiom.getOWLClass()), t(axiom
      .classExpressions()), t(axiom.annotations())));
}
org.semanticweb.owlapi.modelOWLDisjointUnionAxiomannotations

Popular methods of OWLDisjointUnionAxiom

  • getOWLClass
    Gets the class which is equivalent to the disjoint union.
  • getClassExpressions
    Gets the class expressions which are operands of the disjoint union.
  • classExpressions
    Gets the class expressions which are operands of the disjoint union.
  • getAxiomType
  • getOperandsAsList
  • annotationsAsList
  • getAnnotations
  • hashIndex
  • getOWLDisjointClassesAxiom
    Gets the part of this axiom that corresponds to an DisjointClasses axiom.
  • getOWLEquivalentClassesAxiom
    Gets the part of this axiom that corresponds to an EquivalentClasses axiom.

Popular in Java

  • Making http requests using okhttp
  • compareTo (BigDecimal)
  • setRequestProperty (URLConnection)
  • getSharedPreferences (Context)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now