public final class ParserConfigBuilder extends Object implements ParserBuilder, NeedTargetOrRDF, NeedSourceOrBase, NeedSourceBased, OptionalTarget, Sync, Async
Constructor and Description |
---|
ParserConfigBuilder(ParserConfig mutated) |
Modifier and Type | Method and Description |
---|---|
Async |
async() |
ParserConfigBuilder |
base(IRI iri) |
ParserConfigBuilder |
base(String iriStr) |
ParserConfig.ImmutableParserConfig |
build()
Build the (potentially partial) parser config.
|
ParserConfigBuilder |
immutable()
Return an immutable builder at the current state.
|
ParserConfigBuilder |
option(Option option,
Object value)
Return a builder with the given option set.
|
Parsed |
parse() |
Future |
parseAsync() |
OptionalTarget<Dataset> |
rdf(RDF rdf) |
Sync |
source(InputStream is) |
Sync |
source(IRI iri) |
Sync |
source(ParserSource source) |
Sync |
source(Path path) |
Sync |
source(String iri) |
NeedTargetOrRDF |
syntax(RDFSyntax syntax) |
NeedSourceOrBase |
target(Dataset dataset) |
NeedSourceOrBase<Graph> |
target(Graph graph) |
<T> NeedSourceOrBase<T> |
target(ParserTarget<T> target) |
public ParserConfigBuilder(ParserConfig mutated)
public ParserConfig.ImmutableParserConfig build()
Buildable
The parser configuration can be further modified, e.g.
ParserConfig.withOption(Option, Object)
or used with a Parser
as retrieved from RDF.parser(org.apache.commons.rdf.api.RDFSyntax)
.
The returned ParserConfig
is immutable and is not affected by any
further modifications to this builder.
build
in interface Buildable
ParserConfig
as configured by the current builder.public NeedSourceOrBase target(Dataset dataset)
public NeedSourceOrBase<Graph> target(Graph graph)
public <T> NeedSourceOrBase<T> target(ParserTarget<T> target)
public ParserConfigBuilder base(IRI iri)
public ParserConfigBuilder base(String iriStr)
public OptionalTarget<Dataset> rdf(RDF rdf)
public Sync source(ParserSource source)
public ParserConfigBuilder option(Option option, Object value)
Buildable
Note that implementations of Parser
may support different
vendor-specific Option
types, and are free to ignore the set
option (unless it is a Option.RequiredOption
).
It is undefined if setting multiple values for the same (equal) option are accumulative or overriding.
option
in interface Async
option
in interface Buildable
option
in interface NeedSourceBased
option
in interface NeedSourceOrBase
option
in interface NeedTargetOrRDF
option
in interface OptionalTarget
option
in interface Sync
option
- Option to setvalue
- Value to set for optionpublic Sync source(InputStream is)
source
in interface NeedSourceBased
public Future parseAsync()
parseAsync
in interface Async
public ParserConfigBuilder immutable()
Buildable
immutable
in interface Async
immutable
in interface Buildable
immutable
in interface NeedSourceBased
immutable
in interface NeedSourceOrBase
immutable
in interface NeedTargetOrRDF
immutable
in interface OptionalTarget
immutable
in interface Sync
public NeedTargetOrRDF syntax(RDFSyntax syntax)
syntax
in interface OptionalTargetOrSyntax
Copyright © 2015–2018 The Apache Software Foundation. All rights reserved.