Uses of Interface
org.apache.any23.writer.WriterFactory
-
Packages that use WriterFactory Package Description org.apache.any23.writer This package collects a set ofTripleHandler
decorators and specific RDF formatTripleWriter
implementations. -
-
Uses of WriterFactory in org.apache.any23.writer
Subinterfaces of WriterFactory in org.apache.any23.writer Modifier and Type Interface Description (package private) interface
org.apache.any23.writer.BaseWriterFactory<Output>
interface
DecoratingWriterFactory
Base interface used for constructors of decoratingTripleHandler
implementations.interface
TripleWriterFactory
Base interface for constructors ofTripleHandler
implementations that write to anOutputStream
using a particularFileFormat
.Classes in org.apache.any23.writer that implement WriterFactory Modifier and Type Class Description class
JSONLDWriterFactory
class
JSONWriterFactory
Deprecated.since 2.3.class
NQuadsWriterFactory
class
NTriplesWriterFactory
class
RDFXMLWriterFactory
class
TriXWriterFactory
class
TurtleWriterFactory
class
URIListWriterFactory
Methods in org.apache.any23.writer that return WriterFactory Modifier and Type Method Description WriterFactory
WriterFactoryRegistry. getWriterByIdentifier(String id)
Returns theWriterFactory
identified byid
.Methods in org.apache.any23.writer that return types with arguments of type WriterFactory Modifier and Type Method Description List<WriterFactory>
WriterFactoryRegistry. getWriters()
Collection<WriterFactory>
WriterFactoryRegistry. getWritersByMimeType(String mimeType)
Returns all the writers matching the specifiedmimeType
.Methods in org.apache.any23.writer with parameters of type WriterFactory Modifier and Type Method Description static String
WriterFactoryRegistry. getIdentifier(WriterFactory writerClass)
Reads the identifier specified for the givenWriterFactory
.static String
WriterFactoryRegistry. getMimeType(WriterFactory writerClass)
Reads the MIME Type specified for the givenWriterFactory
.void
WriterFactoryRegistry. register(WriterFactory f)
Registers a newWriterFactory
to the registry.
-