Interface ContextApi<R>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      R context​(jakarta.json.JsonStructure context)
      A context that is used to initialize the active context.
      R context​(java.lang.String contextLocation)
      A context that is used to initialize the active context.
      R context​(java.net.URI contextUri)
      A context that is used to initialize the active context.
      R context​(Document context)
      A context that is used to initialize the active context.
    • Method Detail

      • context

        R context​(java.net.URI contextUri)
        A context that is used to initialize the active context.
        Parameters:
        contextUri - URI referring to a context
        Returns:
        builder instance
      • context

        R context​(java.lang.String contextLocation)
        A context that is used to initialize the active context.
        Parameters:
        contextLocation - IRI referring to a context
        Returns:
        builder instance
      • context

        R context​(jakarta.json.JsonStructure context)
        A context that is used to initialize the active context.
        Parameters:
        context - JsonObject, a sequence of JsonObject, or a JsonString representing an IRI
        Returns:
        builder instance
      • context

        R context​(Document context)
        A context that is used to initialize the active context.
        Parameters:
        context - Document representing a context
        Returns:
        builder instance