| RDF-Core documentation | view source | Contained in the RDF-Core distribution. |
RDF::Core::Model::Serializer - interface between model and RDF::Core::Serializer
require RDF::Core::Model::Serializer;
my $xml = '';
my $serializer = new RDF::Core::Model::Serializer(Model=>$model,
Output=>\$xml,
BaseURI => 'URI://BASE/',
);
$serializer->serialize;
print "$xml\n";
A Model::Serializer object sets handlers for serializer, connecting the serializer with a specific model.
Available options are:
A reference to RDF::Core::Model object - the RDF model I want to serialize.
See RDF::Core::Serializer options
While the module provides defaults for each handler, you can override any of them. See RDF::Core::Serializer for details.
This package is subject to the MPL (or the GPL alternatively).
Ginger Alliance, rdf@gingerall.cz
RDF::Core::Serializer, RDF::Core::Model
| RDF-Core documentation | view source | Contained in the RDF-Core distribution. |