Tabnine Logo
ClassifiedTBox.objectPropertiesDAG
Code IndexAdd Tabnine to your IDE (free)

How to use
objectPropertiesDAG
method
in
it.unibz.inf.ontop.spec.ontology.ClassifiedTBox

Best Java code snippets using it.unibz.inf.ontop.spec.ontology.ClassifiedTBox.objectPropertiesDAG (Showing top 12 results out of 315)

origin: ontop/ontop

public Intersection<ObjectPropertyExpression> getTopProperty() {
  return new Intersection<>(reasoner.objectPropertiesDAG());
}

origin: ontop/ontop

ObjectSomeValuesFrom some = (ObjectSomeValuesFrom)b;
ObjectPropertyExpression prop = some.getProperty();
Set<ObjectPropertyExpression> bsubproperties = reasoner.objectPropertiesDAG().getSubRepresentatives(prop);
Iterator<ClassExpression> i = concepts.iterator();
while (i.hasNext()) {
origin: ontop/ontop

/**
 * Assign indexes for the named DAG, use a depth first listener over the DAG 
 * @param reasoner used to know ancestors and descendants of the dag
 */

public SemanticIndexBuilder(ClassifiedTBox reasoner)  {
  classRanges = createSemanticIndex(reasoner.classesDAG());
  opRanges = createSemanticIndex(reasoner.objectPropertiesDAG());
  dpRanges = createSemanticIndex(reasoner.dataPropertiesDAG());
}
  
origin: ontop/ontop

Intersection<ObjectPropertyExpression> properties = propertiesCache.get(idx);            
if (properties == null) {
  properties = new Intersection<>(reasoner.objectPropertiesDAG());
  for (Function a : edge.getBAtoms()) {
    if (a.isOperation()) {
origin: ontop/ontop

for (Equivalences<ObjectPropertyExpression> propNode : reasoner.objectPropertiesDAG()) {
  for (Equivalences<ObjectPropertyExpression> subpropNode : reasoner.objectPropertiesDAG().getSub(propNode)) {
    for (ObjectPropertyExpression subprop : subpropNode) {
      if (subprop.isInverse())
origin: ontop/ontop

  throw new RuntimeException("INVERSE PROPERTIES ARE NOT SUPPORTED IN ABOX:" + ax);
ObjectPropertyExpression ope = reasonerDag.objectPropertiesDAG().getCanonicalForm(ope0);
origin: ontop/ontop

getObjectTMappings(mappingIndex, originalMappingIndex, reasoner.objectPropertiesDAG(), excludeFromTMappings);
getDataTMappings(mappingIndex, originalMappingIndex, reasoner.dataPropertiesDAG(), excludeFromTMappings);
origin: ontop/ontop

ObjectPropertyExpression equivalent = reasoner.objectPropertiesDAG().getCanonicalForm(ope);
if (equivalent != null && !equivalent.equals(ope)) {
  if (!equivalent.isInverse())
origin: it.unibz.inf.ontop/ontop-mapping-core

getObjectTMappings(mappingIndex, originalMappingIndex, reasoner.objectPropertiesDAG(), excludeFromTMappings);
getDataTMappings(mappingIndex, originalMappingIndex, reasoner.dataPropertiesDAG(), excludeFromTMappings);
origin: ontop/ontop

for(Equivalences<ObjectPropertyExpression> node : reasoner.objectPropertiesDAG()) {
  ObjectPropertyExpression rep = node.getRepresentative();
  ObjectPropertyExpression repInv = rep.getInverse();
    (EquivalencesDAGImpl<ObjectPropertyExpression>)reasoner.objectPropertiesDAG(), objectProperties);
origin: it.unibz.inf.ontop/ontop-obda-core

for(Equivalences<ObjectPropertyExpression> node : reasoner.objectPropertiesDAG()) {
  ObjectPropertyExpression rep = node.getRepresentative();
  ObjectPropertyExpression repInv = rep.getInverse();
    (EquivalencesDAGImpl<ObjectPropertyExpression>)reasoner.objectPropertiesDAG(), objectProperties);
origin: ontop/ontop

for (Equivalences<ObjectPropertyExpression> set : reasonerDag.objectPropertiesDAG()) {
it.unibz.inf.ontop.spec.ontologyClassifiedTBoxobjectPropertiesDAG

Popular methods of ClassifiedTBox

  • classes
    classes
  • classesDAG
  • dataProperties
    data properties
  • dataPropertiesDAG
  • objectProperties
    object properties
  • dataRangesDAG
    datatypes and data property ranges
  • disjointClasses
  • disjointDataProperties
  • disjointObjectProperties
  • functionalDataProperties
  • functionalObjectProperties
  • functionalObjectProperties

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • requestLocationUpdates (LocationManager)
  • setScale (BigDecimal)
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Path (java.nio.file)
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • CodeWhisperer alternatives
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