RDF::Trine::Serializer::RDFXML - RDF/XML Serializer


RDF-Trine documentation  | view source Contained in the RDF-Trine distribution.

Index


NAME

Top

RDF::Trine::Serializer::RDFXML - RDF/XML Serializer

VERSION

Top

This document describes RDF::Trine::Serializer::RDFXML version 0.135

SYNOPSIS

Top

 use RDF::Trine::Serializer::RDFXML;
 my $serializer	= RDF::Trine::Serializer::RDFXML->new( namespaces => { ex => 'http://example/' } );
 print $serializer->serialize_model_to_string($model);

DESCRIPTION

Top

The RDF::Trine::Serializer::Turtle class provides an API for serializing RDF graphs to the RDF/XML syntax.

METHODS

Top

Beyond the methods documented below, this class inherits methods from the RDF::Trine::Serializer class.

new ( namespaces => \%namespaces, base_uri => $baseuri )

Returns a new RDF/XML serializer object.

serialize_model_to_file ( $fh, $model )

Serializes the $model to RDF/XML, printing the results to the supplied filehandle <$fh>.

serialize_model_to_string ( $model )

Serializes the $model to RDF/XML, returning the result as a string.

serialize_iterator_to_file ( $file, $iter )

Serializes the iterator to RDF/XML, printing the results to the supplied filehandle <$fh>.

serialize_iterator_to_string ( $iter )

Serializes the iterator to RDF/XML, returning the result as a string.

SEE ALSO

Top

http://www.w3.org/TR/rdf-syntax-grammar/

AUTHOR

Top

Gregory Todd Williams <gwilliams@cpan.org>

COPYRIGHT

Top


RDF-Trine documentation  | view source Contained in the RDF-Trine distribution.