java.lang.Object
de.wwu.scdh.annotation.selection.SEL

public class SEL extends Object
Defines components of the Selene selector ontology in a type-safe way.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final org.apache.jena.rdf.model.Resource
    A bad selector is user input, that can not be processed.
    static final org.apache.jena.rdf.model.Resource
    A blanked selector is a selector, that points to a portion of a resource representation which is not part of the resource representation which the selectors of a mapping request point to.
    static final org.apache.jena.rdf.model.Property
    This property may be added when an error occurred when processing a selector.
    static final String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    SEL()
     
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • NAMESPACE

      public static final String NAMESPACE
      See Also:
    • BlankedSelector

      public static final org.apache.jena.rdf.model.Resource BlankedSelector
      A blanked selector is a selector, that points to a portion of a resource representation which is not part of the resource representation which the selectors of a mapping request point to. E.g. in a forward mapping request, the selected node of the preimage is not in the image. The node and the selector pointing to it are blanked out by the transformation, or say: muted or collimated. Instead of deleting the selector from the result set of a mapping operation without trace, this class can be assigned to the selector.
    • BadSelector

      public static final org.apache.jena.rdf.model.Resource BadSelector
      A bad selector is user input, that can not be processed. Instead of returning a BadRequest error code, an application can assign this RDF class to a selector, the processing of which would throw an exception.
    • error

      public static final org.apache.jena.rdf.model.Property error
      This property may be added when an error occurred when processing a selector.
  • Constructor Details

    • SEL

      public SEL()