public interface Buildable
Modifier and Type | Method and Description |
---|---|
ParserConfig.ImmutableParserConfig |
build()
Build the (potentially partial) parser config.
|
Buildable |
immutable()
Return an immutable builder at the current state.
|
<V> Buildable |
option(Option<V> option,
V value)
Return a builder with the given option set.
|
Buildable immutable()
ParserConfig.ImmutableParserConfig build()
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.
ParserConfig
as configured by the current builder.<V> Buildable option(Option<V> option, V value)
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.
V
- The type of the Option
valueoption
- Option to setvalue
- Value to set for optionCopyright © 2015–2018 The Apache Software Foundation. All rights reserved.