- 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
FieldsModifier and TypeFieldDescriptionstatic final intAllow absolute relative references (e.g.static final intallow child relative references (e.g.static final intallow grandparent relative references (e.g. "../..static final intAllow network relative references (e.g.static final intallow parent relative references (e.g. "..static final intAllow same document references (e.g. "" or "#frag").
-
Field Details
-
SAMEDOCUMENT
static final int SAMEDOCUMENTAllow same document references (e.g. "" or "#frag").- See Also:
-
NETWORK
static final int NETWORKAllow network relative references (e.g. "//example.org/a/b/c").- See Also:
-
ABSOLUTE
static final int ABSOLUTEAllow absolute relative references (e.g. "/a/b/c").- See Also:
-
CHILD
static final int CHILDallow child relative references (e.g. "b/c").- See Also:
-
PARENT
static final int PARENTallow parent relative references (e.g. "../b/c").- See Also:
-
GRANDPARENT
static final int GRANDPARENTallow grandparent relative references (e.g. "../../b/c").- See Also:
-