Package org.apache.any23.writer
Class RDFXMLWriterFactory
- java.lang.Object
-
- org.apache.any23.writer.RDFXMLWriterFactory
-
- All Implemented Interfaces:
TripleWriterFactory
,WriterFactory
public class RDFXMLWriterFactory extends Object implements TripleWriterFactory
- Author:
- Peter Ansell (p_ansell@yahoo.com), Hans Brende (hansbrende@apache.org)
-
-
Field Summary
Fields Modifier and Type Field Description static String
IDENTIFIER
static String
MIME_TYPE
-
Constructor Summary
Constructors Constructor Description RDFXMLWriterFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIdentifier()
Settings
getSupportedSettings()
TripleFormat
getTripleFormat()
TripleHandler
getTripleWriter(OutputStream os, Settings settings)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.any23.writer.TripleWriterFactory
getMimeType, getRdfFormat, getRdfWriter
-
-
-
-
Field Detail
-
MIME_TYPE
public static final String MIME_TYPE
-
IDENTIFIER
public static final String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTripleFormat
public TripleFormat getTripleFormat()
- Specified by:
getTripleFormat
in interfaceTripleWriterFactory
- Returns:
- the format used to write to
OutputStream
s
-
getSupportedSettings
public Settings getSupportedSettings()
- Specified by:
getSupportedSettings
in interfaceTripleWriterFactory
- Returns:
- the settings supported by writers produced by this factory
-
getIdentifier
public String getIdentifier()
- Specified by:
getIdentifier
in interfaceWriterFactory
-
getTripleWriter
public TripleHandler getTripleWriter(OutputStream os, Settings settings)
- Specified by:
getTripleWriter
in interfaceTripleWriterFactory
- Parameters:
os
- theOutputStream
to write tosettings
- the settings with which to configure the writer- Returns:
- a
TripleHandler
which writes to the specifiedOutputStream
-
-