Interface IRIRelativize

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int ABSOLUTE
      Allow absolute relative references (e.g.
      static int CHILD
      allow child relative references (e.g.
      static int GRANDPARENT
      allow grandparent relative references (e.g.
      static int NETWORK
      Allow network relative references (e.g.
      static int PARENT
      allow parent relative references (e.g.
      static int SAMEDOCUMENT
      Allow same document references (e.g.
    • Field Detail

      • SAMEDOCUMENT

        static final int SAMEDOCUMENT
        Allow same document references (e.g. "" or "#frag").
        See Also:
        Constant Field Values
      • NETWORK

        static final int NETWORK
        Allow network relative references (e.g. "//example.org/a/b/c").
        See Also:
        Constant Field Values
      • ABSOLUTE

        static final int ABSOLUTE
        Allow absolute relative references (e.g. "/a/b/c").
        See Also:
        Constant Field Values
      • CHILD

        static final int CHILD
        allow child relative references (e.g. "b/c").
        See Also:
        Constant Field Values
      • PARENT

        static final int PARENT
        allow parent relative references (e.g. "../b/c").
        See Also:
        Constant Field Values
      • GRANDPARENT

        static final int GRANDPARENT
        allow grandparent relative references (e.g. "../../b/c").
        See Also:
        Constant Field Values