Package org.apache.any23.writer
Class JSONLDWriterFactory
- java.lang.Object
-
- org.apache.any23.writer.JSONLDWriterFactory
-
- All Implemented Interfaces:
TripleWriterFactory
,WriterFactory
public class JSONLDWriterFactory extends Object implements TripleWriterFactory
- Author:
- Julio Caguano., 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 JSONLDWriterFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIdentifier()
Settings
getSupportedSettings()
TripleFormat
getTripleFormat()
TripleHandler
getTripleWriter(OutputStream out, 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
-
getIdentifier
public String getIdentifier()
- Specified by:
getIdentifier
in interfaceWriterFactory
-
getTripleWriter
public TripleHandler getTripleWriter(OutputStream out, Settings settings)
- Specified by:
getTripleWriter
in interfaceTripleWriterFactory
- Parameters:
out
- theOutputStream
to write tosettings
- the settings with which to configure the writer- Returns:
- a
TripleHandler
which writes to the specifiedOutputStream
-
getSupportedSettings
public Settings getSupportedSettings()
- Specified by:
getSupportedSettings
in interfaceTripleWriterFactory
- Returns:
- the settings supported by writers produced by this factory
-
-