Interface IRIRelativize

All Known Implementing Classes:
AbsIRIImpl, IRI, IRIImpl, ResolvedRelativeIRI

public interface IRIRelativize
Constants for use with IRI.relativize(IRI, int) and IRI.relativize(String, int). These constants can be or-red together.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Allow absolute relative references (e.g.
    static final int
    allow child relative references (e.g.
    static final int
    allow grandparent relative references (e.g. "../..
    static final int
    Allow network relative references (e.g.
    static final int
    allow parent relative references (e.g. "..
    static final int
    Allow same document references (e.g. "" or "#frag").
  • Field Details

    • SAMEDOCUMENT

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

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

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

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

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

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