Package org.apache.jena.iri
Interface IRIRelativize
-
- All Known Implementing Classes:
AbsIRIImpl,IRI,IRIImpl,ResolvedRelativeIRI
public interface IRIRelativizeConstants for use withIRI.relativize(IRI, int)andIRI.relativize(String, int). These constants can be or-red together.
-
-
Field Summary
Fields Modifier and Type Field Description static intABSOLUTEAllow absolute relative references (e.g.static intCHILDallow child relative references (e.g.static intGRANDPARENTallow grandparent relative references (e.g.static intNETWORKAllow network relative references (e.g.static intPARENTallow parent relative references (e.g.static intSAMEDOCUMENTAllow 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
-
-