Uses of Class
org.apache.juneau.parser.Parser
Packages that use Parser
Package
Description
CSV Marshalling Support
REST Server API
REST Client API
REST Server Mock API
-
Uses of Parser in org.apache.juneau.collections
Methods in org.apache.juneau.collections with parameters of type ParserModifier and TypeMethodDescriptionstatic JsonList
Construct a list initialized with the specified string.static JsonList
JsonList.ofText
(CharSequence in, Parser p) Construct a list initialized with the specified string.static JsonMap
Construct a map initialized with the specified string.static JsonMap
JsonMap.ofText
(CharSequence in, Parser p) Construct a map initialized with the specified string.Constructors in org.apache.juneau.collections with parameters of type ParserModifierConstructorDescriptionConstruct a list initialized with the specified string.JsonList
(CharSequence in, Parser p) Construct a list initialized with the specified string.Construct a map initialized with the specified string.JsonMap
(CharSequence in, Parser p) Construct a map initialized with the specified string. -
Uses of Parser in org.apache.juneau.config
Methods in org.apache.juneau.config with parameters of type ParserModifier and TypeMethodDescription<T> Optional<T>
Returns this entry converted to the specified type.<T> Optional<T>
Same asEntry.as(Type, Type...)
but specifies the parser to use to parse the entry.Returns this entry as a parsed list.Returns this entry as a parsed map. -
Uses of Parser in org.apache.juneau.csv
Subclasses of Parser in org.apache.juneau.csv -
Uses of Parser in org.apache.juneau.examples.parser
Subclasses of Parser in org.apache.juneau.examples.parserModifier and TypeClassDescriptionclass
Example parser that converts byte streams toBufferedImage
objects. -
Uses of Parser in org.apache.juneau.html
Subclasses of Parser in org.apache.juneau.htmlModifier and TypeClassDescriptionclass
Parses text generated by theHtmlSerializer
class back into a POJO model. -
Uses of Parser in org.apache.juneau.json
Subclasses of Parser in org.apache.juneau.jsonModifier and TypeClassDescriptionclass
Parses any valid JSON text into a POJO model.class
Parses any valid JSON text into a POJO model.static class
Default parser, strict mode. -
Uses of Parser in org.apache.juneau.marshaller
Methods in org.apache.juneau.marshaller that return ParserModifier and TypeMethodDescriptionMarshaller.getParser()
Returns the parser associated with this marshaller.Constructors in org.apache.juneau.marshaller with parameters of type Parser -
Uses of Parser in org.apache.juneau.msgpack
Subclasses of Parser in org.apache.juneau.msgpackModifier and TypeClassDescriptionclass
Parses a MessagePack stream into a POJO model.static class
Default parser, string input encoded as BASE64.static class
Default parser, string input encoded as spaced-hex. -
Uses of Parser in org.apache.juneau.oapi
Subclasses of Parser in org.apache.juneau.oapi -
Uses of Parser in org.apache.juneau.parser
Subclasses of Parser in org.apache.juneau.parserModifier and TypeClassDescriptionclass
Subclass ofParser
for byte-based parsers.static class
Represents no Parser.static class
An identifier that the previous entries in this group should be inherited.static class
An identifier that the previous entries in this group should not be inherited.class
Subclass ofParser
for characters-based parsers.Methods in org.apache.juneau.parser that return ParserModifier and TypeMethodDescriptionParser.Builder.build()
ParserMatch.getParser()
Returns the parser that matched the HTTPContent-Type header value.Same asParserSet.getParserMatch(String)
but returns just the matched parser.Same asParserSet.getParserMatch(MediaType)
but returns just the matched parser.Methods in org.apache.juneau.parser that return types with arguments of type ParserMethods in org.apache.juneau.parser with parameters of type ParserModifier and TypeMethodDescriptionRegisters the specified parsers with this group.static ParserSession.Builder
Creates a new builder for this object.Method parameters in org.apache.juneau.parser with type arguments of type ParserModifier and TypeMethodDescriptionstatic Parser.Builder
Parser.createParserBuilder
(Class<? extends Parser> c) Instantiates a builder of the specified parser class.Constructors in org.apache.juneau.parser with parameters of type Parser -
Uses of Parser in org.apache.juneau.plaintext
Subclasses of Parser in org.apache.juneau.plaintextModifier and TypeClassDescriptionclass
Parsers HTTP plain text request bodies into Group 5 POJOs. -
Uses of Parser in org.apache.juneau.rest
Methods in org.apache.juneau.rest with parameters of type ParserModifier and TypeMethodDescriptionAdds one or more parsers to this class.Adds one or more parsers to this operation. -
Uses of Parser in org.apache.juneau.rest.client
Methods in org.apache.juneau.rest.client with parameters of type ParserModifier and TypeMethodDescriptionprotected RestResponse
RestClient.createResponse
(RestRequest request, HttpResponse httpResponse, Parser parser) Creates aRestResponse
object from the specifiedHttpResponse
object.<T> T
RestClient.getRemote
(Class<T> interfaceClass, Object rootUrl, Serializer serializer, Parser parser) Same asRestClient.getRemote(Class, Object)
but allows you to override the serializer and parser used.<T> T
RestClient.getRrpcInterface
(Class<T> interfaceClass, Object uri, Serializer serializer, Parser parser) Same asRestClient.getRrpcInterface(Class, Object)
but allows you to override the serializer and parser used.Specifies the parser to use for this body.Parser.Specifies the parser to use on the response body.Parsers.Method parameters in org.apache.juneau.rest.client with type arguments of type ParserModifier and TypeMethodDescriptionParser.Specifies the parser to use on the response body.Constructors in org.apache.juneau.rest.client with parameters of type ParserModifierConstructorDescriptionResponseContent
(RestClient client, RestRequest request, RestResponse response, Parser parser) Constructor.protected
RestResponse
(RestClient client, RestRequest request, HttpResponse response, Parser parser) Constructor. -
Uses of Parser in org.apache.juneau.rest.httppart
Methods in org.apache.juneau.rest.httppart with parameters of type ParserModifier and TypeMethodDescriptionSets the parser to use for this content. -
Uses of Parser in org.apache.juneau.rest.mock
Methods in org.apache.juneau.rest.mock with parameters of type ParserModifier and TypeMethodDescriptionprotected MockRestResponse
MockRestClient.createResponse
(RestRequest req, HttpResponse httpResponse, Parser parser) Method parameters in org.apache.juneau.rest.mock with type arguments of type ParserModifier and TypeMethodDescriptionConstructors in org.apache.juneau.rest.mock with parameters of type ParserModifierConstructorDescriptionMockRestResponse
(RestClient client, RestRequest request, HttpResponse response, Parser parser) Constructor. -
Uses of Parser in org.apache.juneau.uon
Subclasses of Parser in org.apache.juneau.uonModifier and TypeClassDescriptionclass
Parses UON (a notation for URL-encoded query parameter values) text into POJO models.static class
Default parser, decoding. -
Uses of Parser in org.apache.juneau.urlencoding
Subclasses of Parser in org.apache.juneau.urlencodingModifier and TypeClassDescriptionclass
Parses URL-encoded text into POJO models. -
Uses of Parser in org.apache.juneau.xml
Subclasses of Parser in org.apache.juneau.xmlModifier and TypeClassDescriptionclass
Parses text generated by theXmlSerializer
class back into a POJO model.