congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ReasonerRegistry.theRegistry
Code IndexAdd Tabnine to your IDE (free)

How to use
theRegistry
method
in
org.apache.jena.reasoner.ReasonerRegistry

Best Java code snippets using org.apache.jena.reasoner.ReasonerRegistry.theRegistry (Showing top 2 results out of 315)

origin: apache/jena

/**
  Answer a ReasonerFactory which delivers reasoners with the given
  URL <code>reasonerURL</code>. If there is no such reasoner, throw
  an <code>UnknownreasonerException</code>.
*/
public static ReasonerFactory getReasonerFactoryByURL( Resource root, Resource reasonerURL )
  {
  String url = reasonerURL.getURI();
  ReasonerFactory factory = ReasonerRegistry.theRegistry().getFactory( url );
  if (factory == null) throw new UnknownReasonerException( root, reasonerURL );
  return factory;
  }
}
origin: org.apache.jena/jena-core

/**
  Answer a ReasonerFactory which delivers reasoners with the given
  URL <code>reasonerURL</code>. If there is no such reasoner, throw
  an <code>UnknownreasonerException</code>.
*/
public static ReasonerFactory getReasonerFactoryByURL( Resource root, Resource reasonerURL )
  {
  String url = reasonerURL.getURI();
  ReasonerFactory factory = ReasonerRegistry.theRegistry().getFactory( url );
  if (factory == null) throw new UnknownReasonerException( root, reasonerURL );
  return factory;
  }
}
org.apache.jena.reasonerReasonerRegistrytheRegistry

Javadoc

Single global instance of the registry

Popular methods of ReasonerRegistry

  • getOWLMicroReasoner
    Prebuilt standard configuration a micro-OWL reasoner. This just supports property axioms, and class
  • getOWLReasoner
    Prebuilt standard configuration for the default OWL reasoner. This configuration is hybrid forward/b
  • getRDFSReasoner
    Return a prebuilt standard configuration for the default RDFS reasoner
  • makeDirect
    Return a property Node which represents the direct version of a transitively closed property. See ma
  • <init>
    Constructor is hidden - go via theRegistry
  • getFactory
    Return the factory for the given reasoner.
  • getTransitiveReasoner
    Return a prebuilt standard configuration for the default subclass/subproperty transitive closure rea
  • register
    Register a Reasoner.

Popular in Java

  • Updating database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (Timer)
  • getSupportFragmentManager (FragmentActivity)
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • JFrame (javax.swing)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top Sublime Text plugins
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