Uses of Class
org.apache.juneau.parser.ParserPipe
Packages that use ParserPipe
Package
Description
CSV Marshalling Support
-
Uses of ParserPipe in org.apache.juneau.csv
Methods in org.apache.juneau.csv with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
CsvParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) -
Uses of ParserPipe in org.apache.juneau.examples.parser
Methods in org.apache.juneau.examples.parser with parameters of type ParserPipeModifier and TypeMethodDescription<T> T
ImageParser.doParse
(ParserSession session, ParserPipe pipe, ClassMeta<T> type) -
Uses of ParserPipe in org.apache.juneau.html
Methods in org.apache.juneau.html with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
HtmlParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) protected <E> Collection<E>
HtmlParserSession.doParseIntoCollection
(ParserPipe pipe, Collection<E> c, Type elementType) protected <K,
V> Map<K, V> HtmlParserSession.doParseIntoMap
(ParserPipe pipe, Map<K, V> m, Type keyType, Type valueType) -
Uses of ParserPipe in org.apache.juneau.json
Methods in org.apache.juneau.json with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
JsonParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) protected <E> Collection<E>
JsonParserSession.doParseIntoCollection
(ParserPipe pipe, Collection<E> c, Type elementType) protected <K,
V> Map<K, V> JsonParserSession.doParseIntoMap
(ParserPipe pipe, Map<K, V> m, Type keyType, Type valueType) -
Uses of ParserPipe in org.apache.juneau.msgpack
Methods in org.apache.juneau.msgpack with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
MsgPackParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) Constructors in org.apache.juneau.msgpack with parameters of type ParserPipe -
Uses of ParserPipe in org.apache.juneau.oapi
Methods in org.apache.juneau.oapi with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
OpenApiParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) -
Uses of ParserPipe in org.apache.juneau.parser
Methods in org.apache.juneau.parser that return ParserPipeModifier and TypeMethodDescriptionfinal ParserPipe
InputStreamParserSession.createPipe
(Object input) Wraps the specified input object into aParserPipe
object so that it can be easily converted into a stream or reader.protected ParserPipe
ParserSession.createPipe
(Object input) Wraps the specified input object into aParserPipe
object so that it can be easily converted into a stream or reader.final ParserPipe
ReaderParserSession.createPipe
(Object input) Wraps the specified input object into aParserPipe
object so that it can be easily converted into a stream or reader.protected ParserPipe
ParserSession.setPipe
(ParserPipe pipe) TheParserSession.createPipe(Object)
method should call this method to set the pipe for debugging purposes.Methods in org.apache.juneau.parser with parameters of type ParserPipeModifier and TypeMethodDescription<T> T
Parser.doParse
(ParserSession session, ParserPipe pipe, ClassMeta<T> type) Workhorse method.protected <T> T
ParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) Workhorse method.protected <E> Collection<E>
ParserSession.doParseIntoCollection
(ParserPipe pipe, Collection<E> c, Type elementType) Implementation method.protected <K,
V> Map<K, V> ParserSession.doParseIntoMap
(ParserPipe pipe, Map<K, V> m, Type keyType, Type valueType) Implementation method.protected ParserPipe
ParserSession.setPipe
(ParserPipe pipe) TheParserSession.createPipe(Object)
method should call this method to set the pipe for debugging purposes.Constructors in org.apache.juneau.parser with parameters of type ParserPipeModifierConstructorDescriptionprotected
ParserInputStream
(ParserPipe pipe) Constructor.ParserReader
(ParserPipe pipe) Constructor. -
Uses of ParserPipe in org.apache.juneau.plaintext
Methods in org.apache.juneau.plaintext with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
PlainTextParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) -
Uses of ParserPipe in org.apache.juneau.uon
Methods in org.apache.juneau.uon with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
UonParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) protected <E> Collection<E>
UonParserSession.doParseIntoCollection
(ParserPipe pipe, Collection<E> c, Type elementType) protected <K,
V> Map<K, V> UonParserSession.doParseIntoMap
(ParserPipe pipe, Map<K, V> m, Type keyType, Type valueType) final UonReader
UonParserSession.getUonReader
(ParserPipe pipe, boolean decodeChars) Creates aUonReader
from the specified parser pipe.Constructors in org.apache.juneau.uon with parameters of type ParserPipe -
Uses of ParserPipe in org.apache.juneau.urlencoding
Methods in org.apache.juneau.urlencoding with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
UrlEncodingParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) protected <K,
V> Map<K, V> UrlEncodingParserSession.doParseIntoMap
(ParserPipe pipe, Map<K, V> m, Type keyType, Type valueType) -
Uses of ParserPipe in org.apache.juneau.xml
Methods in org.apache.juneau.xml that return ParserPipeModifier and TypeMethodDescriptionXmlReader.getPipe()
Returns the pipe passed into the constructor.Methods in org.apache.juneau.xml with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> T
XmlParserSession.doParse
(ParserPipe pipe, ClassMeta<T> type) protected <E> Collection<E>
XmlParserSession.doParseIntoCollection
(ParserPipe pipe, Collection<E> c, Type elementType) protected <K,
V> Map<K, V> XmlParserSession.doParseIntoMap
(ParserPipe pipe, Map<K, V> m, Type keyType, Type valueType) protected final XmlReader
XmlParserSession.getXmlReader
(ParserPipe pipe) Wrap the specified reader in a STAX reader based on settings in this context.Constructors in org.apache.juneau.xml with parameters of type ParserPipeModifierConstructorDescriptionprotected
XmlReader
(ParserPipe pipe, boolean validating, XMLReporter reporter, XMLResolver resolver, XMLEventAllocator eventAllocator) Constructor.