NAME
URI::BNode - RDF blank node identifiers which are also URI objects
VERSION
Version 0.02
SYNOPSIS
my $bnode = URI::BNode->new;
print "$bnode\n"; # something like _:EH_kW827XQ6vvX0yF8YzRA
METHODS
new [$ID]
Creates a new blank node identifier. If $ID
is undefined or empty, one will be generated using Data::UUID::NCName. If $ID
has a value, it must either begin with _:
or conform to the blank node syntax from the Turtle spec. Other values, including other URIs, will be passed to the URI constructor.
opaque [$NEWVAL]
Replace the blank node's value with a new one. This method will croak if passed a $NEWVAL
which doesn't match the spec in http://www.w3.org/TR/turtle/#BNodes.
AUTHOR
Dorian Taylor, <dorian at cpan.org>
BUGS
Please report any bugs or feature requests to bug-uri-bnode at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=URI-BNode. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc URI::BNode
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
SEE ALSO
LICENSE AND COPYRIGHT
Copyright 2013 Dorian Taylor.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.