Note about usage by the parser factory implementations: the expectation is that at least one of methods {@link #constructReader} and{@link #constructInputStream} will succeed, but not necessarily both.This generally depends on type of resource being represented: for example, if the source is a String or character array, it is most naturally represent via {@link Reader}. For a byte array, on the other hand, an {@link InputStream} is the most natural access method.
Other things to note about using result {@link Reader}s and {@link InputStream}s:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|