.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.42) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "URI::Namespace 3pm" .TH URI::Namespace 3pm "2022-10-14" "perl v5.34.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" URI::Namespace \- A namespace URI/IRI class with autoload methods .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 4 \& use URI::Namespace; \& my $foaf = URI::Namespace\->new( \*(Aqhttp://xmlns.com/foaf/0.1/\*(Aq ); \& print $foaf\->as_string; \& print $foaf\->name; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This module provides an object with a \s-1URI/IRI\s0 attribute, typically used prefix-namespace pairs, typically used in \s-1XML, RDF\s0 serializations, etc. The local part can be used as a method, these are autoloaded. .SH "METHODS" .IX Header "METHODS" .ie n .IP """new ( $string | URI | IRI )""" 4 .el .IP "\f(CWnew ( $string | URI | IRI )\fR" 4 .IX Item "new ( $string | URI | IRI )" This is the constructor. You may pass a string with a \s-1URI\s0 or a \s-1URI\s0 object. .ie n .IP """uri ( [ $local_part ] )""" 4 .el .IP "\f(CWuri ( [ $local_part ] )\fR" 4 .IX Item "uri ( [ $local_part ] )" Returns a \s-1URI\s0 object with the namespace \s-1IRI.\s0 Optionally, the method can take a local part as argument, in which case, it will return the namespace \s-1URI\s0 with the local part appended. .ie n .IP """iri ( [ $local_part ] )""" 4 .el .IP "\f(CWiri ( [ $local_part ] )\fR" 4 .IX Item "iri ( [ $local_part ] )" Returns a \s-1IRI\s0 object with the namespace \s-1IRI.\s0 Optionally, the method can take a local part as argument, in which case, it will return the namespace \s-1IRI\s0 with the local part appended. .ie n .IP """local_part ( $uri )""" 4 .el .IP "\f(CWlocal_part ( $uri )\fR" 4 .IX Item "local_part ( $uri )" Returns the local part string if the given argument \s-1URI\s0 (which may be a string, \s-1URI\s0 or \s-1IRI\s0 object) matches the namespace \s-1URI,\s0 or \&\f(CW\*(C`undef\*(C'\fR if not. .PP The following methods from \s-1URI\s0 can be used on an URI::Namespace object: \f(CW\*(C`as_string\*(C'\fR, \f(CW\*(C`as_iri\*(C'\fR, \f(CW\*(C`canonical\*(C'\fR, \f(CW\*(C`eq\*(C'\fR, \f(CW\*(C`abs\*(C'\fR, \f(CW\*(C`rel\*(C'\fR. .PP One important usage for this module is to enable you to create \s-1URI\s0s for full URIs, e.g.: .PP .Vb 1 \& print $foaf\->Person\->as_string; .Ve .PP will return .PP .Vb 1 \& http://xmlns.com/foaf/0.1/Person .Ve .SH "FURTHER DETAILS" .IX Header "FURTHER DETAILS" See URI::NamespaceMap for further details about authors, license, etc.