The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ODO::Serializer - Base interface for RDF serialization support

SYNOPSIS use ODO::Statement; use ODO::Serializer::NTriples;

 my @statements = ( ODO::Statement->new(...), ODO::Statement->new(...) );

 my $serialzed_text = ODO::Serializer::Ntriples->serialize(\@statements);

 # or ...

 ODO::Serializer::NTriples->serialize(\@statements, \*STDOUT);

 # or ... 

 open(OUTFILE, ">output") or die("Unable to open file named 'output' for writing");

 ODO::Serializer::NTriples->serialize(\@statements, \*OUTFILE);

DESCRIPTION

Base class for statement serializers.

METHODS

serialize( \@statements [, $output_file_handle ] )

Serialize the arrayref of ODO::Statement objects to an output format. If the output file handle is left unspecified the serialized text is returned.

COPYRIGHT

Copyright (c) 2006 IBM Corporation.

All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html