public class StreamDocumentSource extends java.lang.Object implements OWLOntologyDocumentSource
Constructor and Description |
---|
StreamDocumentSource(java.io.InputStream is)
Constructs an input source which will read an ontology from
a representation from the specified stream.
|
StreamDocumentSource(java.io.InputStream stream,
IRI documentIRI)
Constructs an input source which will read an ontology from
a representation from the specified stream.
|
Modifier and Type | Method and Description |
---|---|
IRI |
getDocumentIRI()
Gets the IRI of the ontology document.
|
java.io.InputStream |
getInputStream()
If an input stream can be obtained from this document source then this method creates it.
|
static IRI |
getNextDocumentIRI() |
java.io.Reader |
getReader()
Gets a reader which an ontology document can be read from.
|
boolean |
isInputStreamAvailable()
Determines if an input stream is available which an ontology document can be parsed from.
|
boolean |
isReaderAvailable()
Determines if a reader is available which an ontology document can be
parsed from.
|
public StreamDocumentSource(java.io.InputStream is)
is
- The stream that the ontology representation will be
read from.public StreamDocumentSource(java.io.InputStream stream, IRI documentIRI)
stream
- The stream that the ontology representation will be
read from.documentIRI
- The document IRIpublic static IRI getNextDocumentIRI()
public boolean isInputStreamAvailable()
OWLOntologyDocumentSource
isInputStreamAvailable
in interface OWLOntologyDocumentSource
true
if an input stream can be obtained,
false
if an input stream cannot be obtained from
this document source.public java.io.InputStream getInputStream()
OWLOntologyDocumentSource
isInputStreamAvailable
method returns false
.getInputStream
in interface OWLOntologyDocumentSource
public IRI getDocumentIRI()
OWLOntologyDocumentSource
getDocumentIRI
in interface OWLOntologyDocumentSource
null
.public java.io.Reader getReader()
OWLOntologyDocumentSource
Reader
. This method should not be called if the
isReaderAvailable
method returns false. A Runtime
execption will be
thrown if this happens.getReader
in interface OWLOntologyDocumentSource
Reader
which the ontology can be read from.public boolean isReaderAvailable()
OWLOntologyDocumentSource
isReaderAvailable
in interface OWLOntologyDocumentSource
true
if a reader can be obtained from this
document source, or false
if a reader cannot be obtained
from this document source.