Tabnine Logo
OWLDataFactory.getOWLDataIntersectionOf
Code IndexAdd Tabnine to your IDE (free)

How to use
getOWLDataIntersectionOf
method
in
org.semanticweb.owlapi.model.OWLDataFactory

Best Java code snippets using org.semanticweb.owlapi.model.OWLDataFactory.getOWLDataIntersectionOf (Showing top 20 results out of 315)

origin: owlcs/owlapi

  @Override
  public OWLDataIntersectionOf buildObject() {
    return df.getOWLDataIntersectionOf(items);
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

  @Override
  public OWLDataIntersectionOf buildObject() {
    return df.getOWLDataIntersectionOf(items);
  }
}
origin: net.sourceforge.owlapi/owlapi-fixers

  @Override
  public OWLDataIntersectionOf buildObject() {
    return df.getOWLDataIntersectionOf(items);
  }
}
origin: net.sourceforge.owlapi/org.semanticweb.hermit

@Override
public OWLDataRange visit(OWLDataIntersectionOf range) {
  return m_factory.getOWLDataIntersectionOf(range.operands().map(ExpressionManager.this::getNNF));
}
@Override
origin: com.hermit-reasoner/org.semanticweb.hermit

public OWLDataRange visit(OWLDataIntersectionOf range) {
  Set<OWLDataRange> newConjuncts=new HashSet<OWLDataRange>();
  for (OWLDataRange dr : range.getOperands())
    newConjuncts.add(getNNF(dr));
  return m_factory.getOWLDataIntersectionOf(newConjuncts);
}
public OWLDataRange visit(OWLDataUnionOf range) {
origin: com.github.ansell.owlapi/owlapi-parsers

  @Override
  protected void endDataRangeElement() throws OWLXMLParserException {
    setDataRange(getOWLDataFactory().getOWLDataIntersectionOf(dataRanges));
  }
}
origin: edu.stanford.protege/org.protege.owl.server

@Override
public Object read(OWLInputStream in) throws IOException {
  Set<OWLDataRange> operands = in.readSet(OWLDataRange.class);
  return in.getOWLDataFactory().getOWLDataIntersectionOf(operands);
}
origin: owlcs/owlapi

@Override
public OWLDataRange visit(OWLDataUnionOf node) {
  Stream<OWLDataRange> ops = node.operands().map(p -> p.accept(this));
  if (negated) {
    // Flip to an intersection
    return df.getOWLDataIntersectionOf(ops);
  }
  return df.getOWLDataUnionOf(ops);
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLDataRange visit(OWLDataUnionOf node) {
  Stream<OWLDataRange> ops = node.operands().map(p -> p.accept(this));
  if (negated) {
    // Flip to an intersection
    return df.getOWLDataIntersectionOf(ops);
  }
  return df.getOWLDataUnionOf(ops);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
  List<OWLDataRange> ops = asList(node.operands().map(op -> op.accept(this)));
  return df.getOWLDataIntersectionOf(ops);
}
origin: owlcs/owlapi

@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
  List<OWLDataRange> ops = asList(node.operands().map(op -> op.accept(this)));
  return df.getOWLDataIntersectionOf(ops);
}
origin: owlcs/owlapi

@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
  Stream<OWLDataRange> ops = node.operands().map(p -> p.accept(this));
  if (negated) {
    return df.getOWLDataUnionOf(ops);
  }
  return df.getOWLDataIntersectionOf(ops);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public OWLDataRange visit(OWLDataUnionOf node) {
  Stream<OWLDataRange> ops = node.operands().map(p -> p.accept(this));
  if (negated) {
    // Flip to an intersection
    return df.getOWLDataIntersectionOf(ops);
  }
  return df.getOWLDataUnionOf(ops);
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
  List<OWLDataRange> ops = asList(node.operands().map(op -> op.accept(this)));
  return df.getOWLDataIntersectionOf(ops);
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
  Stream<OWLDataRange> ops = node.operands().map(p -> p.accept(this));
  if (negated) {
    return df.getOWLDataUnionOf(ops);
  }
  return df.getOWLDataIntersectionOf(ops);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
  Stream<OWLDataRange> ops = node.operands().map(p -> p.accept(this));
  if (negated) {
    return df.getOWLDataUnionOf(ops);
  }
  return df.getOWLDataIntersectionOf(ops);
}
origin: net.sourceforge.owlapi/owlapi-oboformat

@Override
public OWLDataRange visit(OWLDataIntersectionOf node) {
  List<OWLDataRange> ops = asList(node.operands().map(op -> op.accept(this)));
  return df.getOWLDataIntersectionOf(ops);
}
origin: net.sourceforge.owlapi/pellet-owlapi-ignazio1977

@Override
public void visitAnd(ATermAppl term) {
  visitList( (ATermList) term.getArgument( 0 ) );
  
  if( obj instanceof OWLClassExpression ) {
    obj = factory.getOWLObjectIntersectionOf( set );
  } else if( obj instanceof OWLDataRange ) {
    obj = factory.getOWLDataIntersectionOf( set );
  }
}
origin: com.github.ansell.pellet/pellet-owlapiv3

public void visitAnd(ATermAppl term) {
  visitList( (ATermList) term.getArgument( 0 ) );
  
  if( obj instanceof OWLClassExpression )
    obj = factory.getOWLObjectIntersectionOf( set );
  else if( obj instanceof OWLDataRange )
    obj = factory.getOWLDataIntersectionOf( set );
}
origin: com.github.galigator.openllet/openllet-owlapi

@Override
public void visitAnd(final ATermAppl term)
{
  visitList((ATermList) term.getArgument(0));
  if (_obj instanceof OWLClassExpression)
    _obj = _factory.getOWLObjectIntersectionOf(dynamicCastTheSet(_set, OWLClassExpression.class));
  else
    if (_obj instanceof OWLDataRange)
      _obj = _factory.getOWLDataIntersectionOf(dynamicCastTheSet(_set, OWLDataRange.class));
}
org.semanticweb.owlapi.modelOWLDataFactorygetOWLDataIntersectionOf

Popular methods of OWLDataFactory

  • getOWLClass
    Gets an OWL class that has the specified IRI
  • getOWLNamedIndividual
    Gets an OWL individual that has the specified IRI
  • getOWLObjectProperty
    Gets an OWL object property that has the specified IRI
  • getOWLSubClassOfAxiom
  • getOWLClassAssertionAxiom
  • getOWLDataProperty
    Gets an OWL data property that has the specified IRI
  • getOWLThing
    Gets the built in owl:Thing class, which has a URI of
  • getOWLAnnotationProperty
    Gets an OWLAnnotationProperty that has the specified IRI
  • getOWLLiteral
    Convenience method that obtains a literal typed as a boolean.
  • getOWLDeclarationAxiom
    Gets a declaration with zero or more annotations for an entity
  • getOWLObjectIntersectionOf
  • getOWLEquivalentClassesAxiom
  • getOWLObjectIntersectionOf,
  • getOWLEquivalentClassesAxiom,
  • getOWLObjectSomeValuesFrom,
  • getOWLNothing,
  • getOWLObjectComplementOf,
  • getOWLObjectPropertyAssertionAxiom,
  • getOWLAnnotationAssertionAxiom,
  • getOWLDataPropertyAssertionAxiom,
  • getOWLDatatype,
  • getOWLAnnotation

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • addToBackStack (FragmentTransaction)
  • getSupportFragmentManager (FragmentActivity)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Join (org.hibernate.mapping)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top plugins for Android Studio
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