org.qi4j.index.rdf.indexing
Class RdfExporter.RdfExporterMixin

java.lang.Object
  extended by org.qi4j.index.rdf.indexing.RdfExporter.RdfExporterMixin
All Implemented Interfaces:
IndexExporter
Enclosing interface:
RdfExporter

public static class RdfExporter.RdfExporterMixin
extends Object
implements IndexExporter

JAVADOC


Constructor Summary
RdfExporter.RdfExporterMixin()
           
 
Method Summary
 void exportFormalToWriter(PrintWriter out)
          Write the index to the provided print writer in an implementation specific, machine-readable format, preferably either XML or JSON.
 void exportReadableToStream(PrintStream out)
          Write the index to the provided output stream in an implementation specific, human-readable format.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RdfExporter.RdfExporterMixin

public RdfExporter.RdfExporterMixin()
Method Detail

exportReadableToStream

public void exportReadableToStream(PrintStream out)
                            throws IOException
Description copied from interface: IndexExporter
Write the index to the provided output stream in an implementation specific, human-readable format.

Specified by:
exportReadableToStream in interface IndexExporter
Parameters:
out - The output stream that the index will be sent to.
Throws:
IOException - if an IOException occurs in the underlying PrintStream.

exportFormalToWriter

public void exportFormalToWriter(PrintWriter out)
                          throws IOException
Description copied from interface: IndexExporter
Write the index to the provided print writer in an implementation specific, machine-readable format, preferably either XML or JSON.

Specified by:
exportFormalToWriter in interface IndexExporter
Parameters:
out - The print writer that the index will be sent to.
Throws:
IOException - if an IOException occurs in the underlying PrintWriter.