Class LocalUri

  • Direct Known Subclasses:
    LocalUri.LocalUriPathComponent, LocalUri.LocalUriRoot

    public abstract class LocalUri
    extends Object
    A uri of the form: kogito-local:///a/b/c...

    For instance: for "/a/b/c" the LocalUri is represented as:

     
           LocalUri(
               LocalUri(
                   LocalUri(Root, "a"), "b"), "c")
     
     

    And it may be constructed with:

     
         LocalUri.Root.append("a").append("b").append("c");