NAME
RDF::Trine::Parser - RDF Parser class.
VERSION
This document describes RDF::Trine::Parser version 0.114_02
SYNOPSIS
use RDF::Trine::Parser;
my $parser = RDF::Trine::Parser->new( 'turtle' );
$parser->parse_into_model( $base_uri, $rdf, $model );
DESCRIPTION
RDF::Trine::Parser is a base class for RDF parsers. It may be used as a factory class for constructing parser objects by name or media type with the new
method, or used to abstract away the logic of choosing a parser based on the media type of RDF content retrieved over the network with the parse_url_into_model
method.
METHODS
new ( $parser_name )
-
Returns a new RDF::Trine::Parser object for the parser with the specified name (e.g. "rdfxml" or "turtle"). If no parser with the specified name is found, throws a RDF::Trine::Error::ParserError exception.
parse_url_into_model ( $url, $model [, %args] )
-
Retrieves the content from
$url
and attempts to parse the resulting RDF into$model
using a parser chosen by the associated content media type. parse ( $base_uri, $rdf, \&handler )
parse_into_model ( $base_uri, $data, $model )
AUTHOR
Gregory Todd Williams <gwilliams@cpan.org>
COPYRIGHT
Copyright (c) 2006-2010 Gregory Todd Williams. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.