Package org.apache.any23.writer
Class JSONWriter
- java.lang.Object
-
- org.apache.any23.writer.TripleWriterHandler
-
- org.apache.any23.writer.JSONWriter
-
- All Implemented Interfaces:
AutoCloseable
,FormatWriter
,TripleHandler
,TripleWriter
@Deprecated public class JSONWriter extends TripleWriterHandler implements FormatWriter
Deprecated.since 2.3. UseJSONLDWriter
instead.Implementation of JSONTripleWriter
.- Author:
- Michele Mostarda (mostarda@fbk.eu)
-
-
Constructor Summary
Constructors Constructor Description JSONWriter(OutputStream os)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
close()
Deprecated.Will be called last and exactly once.void
endDocument(org.eclipse.rdf4j.model.IRI documentIRI)
Deprecated.Writers may override this method to handle an "endDocument" extraction event.boolean
isAnnotated()
Deprecated.Iftrue
then the produced RDF is annotated with the extractors used to generate the specific statements.void
setAnnotated(boolean f)
Deprecated.Sets the annotation flag.void
startDocument(org.eclipse.rdf4j.model.IRI documentIRI)
Deprecated.Writers may override this method to handle a "startDocument" extraction event.void
writeNamespace(String prefix, String uri)
Deprecated.Writes a prefix-namespace mapping.void
writeTriple(org.eclipse.rdf4j.model.Resource s, org.eclipse.rdf4j.model.IRI p, org.eclipse.rdf4j.model.Value o, org.eclipse.rdf4j.model.Resource g)
Deprecated.Writes a triple and, optionally, a graph resource name.-
Methods inherited from class org.apache.any23.writer.TripleWriterHandler
closeContext, openContext, receiveNamespace, receiveTriple, setContentLength
-
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.TripleHandler
closeContext, openContext, receiveNamespace, receiveTriple, setContentLength
-
-
-
-
Constructor Detail
-
JSONWriter
public JSONWriter(OutputStream os)
Deprecated.
-
-
Method Detail
-
startDocument
public void startDocument(org.eclipse.rdf4j.model.IRI documentIRI) throws TripleHandlerException
Deprecated.Description copied from class:TripleWriterHandler
Writers may override this method to handle a "startDocument" extraction event. The default implementation does nothing.- Specified by:
startDocument
in interfaceTripleHandler
- Overrides:
startDocument
in classTripleWriterHandler
- Parameters:
documentIRI
- the name of the document that was started- Throws:
TripleHandlerException
- if an error occurred while responding to a "startDocument" extraction event.
-
writeTriple
public void writeTriple(org.eclipse.rdf4j.model.Resource s, org.eclipse.rdf4j.model.IRI p, org.eclipse.rdf4j.model.Value o, org.eclipse.rdf4j.model.Resource g) throws TripleHandlerException
Deprecated.Description copied from interface:TripleWriter
Writes a triple and, optionally, a graph resource name.- Specified by:
writeTriple
in interfaceTripleWriter
- Parameters:
s
- the subject to writep
- the predicate to writeo
- the object to writeg
- the graph name to write, or null- Throws:
TripleHandlerException
- if there is an error writing the triple
-
writeNamespace
public void writeNamespace(String prefix, String uri) throws TripleHandlerException
Deprecated.Description copied from interface:TripleWriter
Writes a prefix-namespace mapping.
NOTE: this method should be called before writing out any triples. Calling this method after writing out a triple may result in the prefix-namespace mapping being ignored.- Specified by:
writeNamespace
in interfaceTripleWriter
- Parameters:
prefix
- the namespace prefixuri
- the namespace uri- Throws:
TripleHandlerException
- if there was an error writing out the prefix-namespace mapping
-
endDocument
public void endDocument(org.eclipse.rdf4j.model.IRI documentIRI) throws TripleHandlerException
Deprecated.Description copied from class:TripleWriterHandler
Writers may override this method to handle an "endDocument" extraction event. The default implementation does nothing.- Specified by:
endDocument
in interfaceTripleHandler
- Overrides:
endDocument
in classTripleWriterHandler
- Parameters:
documentIRI
- the document IRI.- Throws:
TripleHandlerException
- if an error occurred while responding to a "endDocument" extraction event.
-
close
public void close() throws TripleHandlerException
Deprecated.Description copied from interface:TripleHandler
Will be called last and exactly once.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceTripleHandler
- Specified by:
close
in interfaceTripleWriter
- Throws:
TripleHandlerException
- if there is an error closing theTripleHandler
implementation.
-
isAnnotated
public boolean isAnnotated()
Deprecated.Description copied from interface:FormatWriter
Iftrue
then the produced RDF is annotated with the extractors used to generate the specific statements.- Specified by:
isAnnotated
in interfaceFormatWriter
- Returns:
- the annotation flag value.
-
setAnnotated
public void setAnnotated(boolean f)
Deprecated.Description copied from interface:FormatWriter
Sets the annotation flag.- Specified by:
setAnnotated
in interfaceFormatWriter
- Parameters:
f
- Iftrue
then the produced RDF is annotated with the extractors used to generate the specific statements.
-
-