Uses of Class
org.apache.juneau.parser.ParserPipe
Packages that use ParserPipe
Package
Description
CSV Marshalling Support
- 
Uses of ParserPipe in org.apache.juneau.csvMethods in org.apache.juneau.csv with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> TCsvParserSession.doParse(ParserPipe pipe, ClassMeta<T> type) 
- 
Uses of ParserPipe in org.apache.juneau.examples.parserMethods in org.apache.juneau.examples.parser with parameters of type ParserPipeModifier and TypeMethodDescription<T> TImageParser.doParse(ParserSession session, ParserPipe pipe, ClassMeta<T> type) 
- 
Uses of ParserPipe in org.apache.juneau.htmlMethods in org.apache.juneau.html with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> THtmlParserSession.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.jsonMethods in org.apache.juneau.json with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> TJsonParserSession.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.msgpackMethods in org.apache.juneau.msgpack with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> TMsgPackParserSession.doParse(ParserPipe pipe, ClassMeta<T> type) Constructors in org.apache.juneau.msgpack with parameters of type ParserPipe
- 
Uses of ParserPipe in org.apache.juneau.oapiMethods in org.apache.juneau.oapi with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> TOpenApiParserSession.doParse(ParserPipe pipe, ClassMeta<T> type) 
- 
Uses of ParserPipe in org.apache.juneau.parserMethods in org.apache.juneau.parser that return ParserPipeModifier and TypeMethodDescriptionfinal ParserPipeInputStreamParserSession.createPipe(Object input) Wraps the specified input object into aParserPipeobject so that it can be easily converted into a stream or reader.protected ParserPipeParserSession.createPipe(Object input) Wraps the specified input object into aParserPipeobject so that it can be easily converted into a stream or reader.final ParserPipeReaderParserSession.createPipe(Object input) Wraps the specified input object into aParserPipeobject so that it can be easily converted into a stream or reader.protected ParserPipeParserSession.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> TParser.doParse(ParserSession session, ParserPipe pipe, ClassMeta<T> type) Workhorse method.protected <T> TParserSession.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 ParserPipeParserSession.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 ParserPipeModifierConstructorDescriptionprotectedParserInputStream(ParserPipe pipe) Constructor.ParserReader(ParserPipe pipe) Constructor.
- 
Uses of ParserPipe in org.apache.juneau.plaintextMethods in org.apache.juneau.plaintext with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> TPlainTextParserSession.doParse(ParserPipe pipe, ClassMeta<T> type) 
- 
Uses of ParserPipe in org.apache.juneau.uonMethods in org.apache.juneau.uon with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> TUonParserSession.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 UonReaderUonParserSession.getUonReader(ParserPipe pipe, boolean decodeChars) Creates aUonReaderfrom the specified parser pipe.Constructors in org.apache.juneau.uon with parameters of type ParserPipe
- 
Uses of ParserPipe in org.apache.juneau.urlencodingMethods in org.apache.juneau.urlencoding with parameters of type ParserPipeModifier and TypeMethodDescriptionprotected <T> TUrlEncodingParserSession.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.xmlMethods 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> TXmlParserSession.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 XmlReaderXmlParserSession.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 ParserPipeModifierConstructorDescriptionprotectedXmlReader(ParserPipe pipe, boolean validating, XMLReporter reporter, XMLResolver resolver, XMLEventAllocator eventAllocator) Constructor.