com.hp.hpl.jena.iri
Interface IRIRelativize

All Known Implementing Classes:
IRI

public interface IRIRelativize

Constants for use with IRI.relativize(IRI, int) and IRI.relativize(String, int). These constants can be or-red together.

Author:
Jeremy J. Carroll

Field Summary
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