public interface NeedSourceBased<T> extends Buildable
Modifier and Type | Method and Description |
---|---|
NeedSourceBased<T> |
immutable()
Return an immutable builder at the current state.
|
<V> NeedSourceBased<T> |
option(Option<V> option,
V value)
Return a builder with the given option set.
|
Sync<T,InputStream> |
source(InputStream is) |
Sync<T,IRI> |
source(IRI iri) |
<S> Sync<T,S> |
source(ParserSource<S> source) |
Sync<T,Path> |
source(Path path) |
Sync<T,IRI> |
source(String iri) |
NeedSourceBased<T> immutable()
Buildable
<V> NeedSourceBased<T> option(Option<V> option, V 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.
Sync<T,InputStream> source(InputStream is)
<S> Sync<T,S> source(ParserSource<S> source)
Copyright © 2015–2018 The Apache Software Foundation. All rights reserved.