Class OWLResults

java.lang.Object
org.apache.jena.vocabulary.OWLResults

public class OWLResults extends Object
The vocabulary used by WebOnt to encode results of test runs.

Vocabulary definitions from file:data/resultsOntology.rdf

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final Property
    The point in time at which the test run started; an xsd:dateTime.
    static final Property
    The time taken for the test to run (as far as it did run) on the tested system; an xsd:duration.
    static final Resource
    A TestRun where the system's behavior fails the test, violating a MUST NOT.
    static final Resource
    A TestRun where the system's behavior does not pass the test, but also does not fail.
    static final Resource
    The namespace of the vocabulary as a resource
    static final String
    The namespace of the vocabulary as a string ("http://www.w3.org/2002/03owlt/resultsOntology#")
    static final Property
    A web page presenting the output of the test run, including system-specific additional details.
    static final Resource
    A TestRun where the system's behavior is sufficient for passing the test.
    static final Property
    Syntactic tests.
    static final Property
    The complete system instance on which the test was run, conceptually including software and hardware components.
    static final Property
    The test in question, such as an otest:PositiveEntailmentTest.
    static final Resource
    An event where some system attempts to pass some test.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static String
    The namespace of the vocabulary as a string

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NS

      public static final String NS

      The namespace of the vocabulary as a string ("http://www.w3.org/2002/03owlt/resultsOntology#")

      See Also:
    • NAMESPACE

      public static final Resource NAMESPACE

      The namespace of the vocabulary as a resource

    • output

      public static final Property output

      A web page presenting the output of the test run, including system-specific additional details.

    • test

      public static final Property test

      The test in question, such as an otest:PositiveEntailmentTest.

    • syntacticLevelTestFrom

      public static final Property syntacticLevelTestFrom

      Syntactic tests.

    • system

      public static final Property system

      The complete system instance on which the test was run, conceptually including software and hardware components. No range restriction is provided, however, so the details are flexible; providing an rdfs:label and rdfs:comment may be sufficient for many applications.

    • begins

      public static final Property begins

      The point in time at which the test run started; an xsd:dateTime.

    • duration

      public static final Property duration

      The time taken for the test to run (as far as it did run) on the tested system; an xsd:duration. This value depends on many factors, of course, such as the performance of the hardware components of the tested system. If the system is opaque, these values should only be used for comparison against other tests run on same system.

    • TestRun

      public static final Resource TestRun

      An event where some system attempts to pass some test.

    • IncompleteRun

      public static final Resource IncompleteRun

      A TestRun where the system's behavior does not pass the test, but also does not fail. Typically this is caused by behaving in a way the system SHOULD NOT. For OWL tests, returning an UNKNOWN for most tests should be reported as an IncompleteRun.

    • FailingRun

      public static final Resource FailingRun

      A TestRun where the system's behavior fails the test, violating a MUST NOT.

    • PassingRun

      public static final Resource PassingRun

      A TestRun where the system's behavior is sufficient for passing the test.

  • Constructor Details

    • OWLResults

      public OWLResults()
  • Method Details

    • getURI

      public static String getURI()

      The namespace of the vocabulary as a string

      See Also: