1RDF::Redland::URI(3)  User Contributed Perl Documentation RDF::Redland::URI(3)
2
3
4

NAME

6       RDF::Redland::URI - Redland RDF URI Class
7

SYNOPSIS

9         use RDF::Redland;
10
11         my $uri=new RDF::Redland::URI("http://example.com/");
12
13         my $uri2=RDF::Redland::URI->new_from_uri($uri);
14
15         print $uri2->as_string,"\n";
16

DESCRIPTION

18       Represents a URI as a mostly-opaque object for identifying things in
19       the RDF world.  The URIs are also used for identifying features for the
20       RDF::Redland::Parser and RDF::Redland::Serializer classes.
21

CONSTRUCTORS

23       new STRING
24           Create a new RDF::Redland::URI object from a URI string.
25
26       clone URI
27           Copy a RDF::Redland::URI
28

METHODS

30       as_string
31           Return the statement formatted as a string (UTF-8 encoded).
32
33       equals URI
34           Return non zero if this uri is equal to URI
35

OLD METHODS

37       new_from_uri URI
38           Create a new RDF::Redland::URI object from RDF::Redland::URI URI
39           (copy constructor).  Instead use:
40
41             $u=$uri->clone
42

SEE ALSO

44       RDF::Redland::Parser
45

AUTHOR

47       Dave Beckett - http://www.dajobe.org/
48
49
50
51perl v5.32.0                      2020-07-29              RDF::Redland::URI(3)
Impressum