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.collectionsMethods in org.apache.juneau.collections with parameters of type ParserModifier and TypeMethodDescriptionstatic JsonListConstruct a list initialized with the specified string.static JsonListJsonList.ofText(CharSequence in, Parser p) Construct a list initialized with the specified string.static JsonMapConstruct a map initialized with the specified string.static JsonMapJsonMap.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.configMethods 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.csvSubclasses of Parser in org.apache.juneau.csv
- 
Uses of Parser in org.apache.juneau.examples.parserSubclasses of Parser in org.apache.juneau.examples.parserModifier and TypeClassDescriptionclassExample parser that converts byte streams toBufferedImageobjects.
- 
Uses of Parser in org.apache.juneau.htmlSubclasses of Parser in org.apache.juneau.htmlModifier and TypeClassDescriptionclassParses text generated by theHtmlSerializerclass back into a POJO model.
- 
Uses of Parser in org.apache.juneau.jsonSubclasses of Parser in org.apache.juneau.jsonModifier and TypeClassDescriptionclassParses any valid JSON text into a POJO model.classParses any valid JSON text into a POJO model.static classDefault parser, strict mode.
- 
Uses of Parser in org.apache.juneau.marshallerMethods 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.msgpackSubclasses of Parser in org.apache.juneau.msgpackModifier and TypeClassDescriptionclassParses a MessagePack stream into a POJO model.static classDefault parser, string input encoded as BASE64.static classDefault parser, string input encoded as spaced-hex.
- 
Uses of Parser in org.apache.juneau.oapiSubclasses of Parser in org.apache.juneau.oapi
- 
Uses of Parser in org.apache.juneau.parserSubclasses of Parser in org.apache.juneau.parserModifier and TypeClassDescriptionclassSubclass ofParserfor byte-based parsers.static classRepresents no Parser.static classAn identifier that the previous entries in this group should be inherited.static classAn identifier that the previous entries in this group should not be inherited.classSubclass ofParserfor 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.BuilderCreates a new builder for this object.Method parameters in org.apache.juneau.parser with type arguments of type ParserModifier and TypeMethodDescriptionstatic Parser.BuilderParser.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.plaintextSubclasses of Parser in org.apache.juneau.plaintextModifier and TypeClassDescriptionclassParsers HTTP plain text request bodies into Group 5 POJOs.
- 
Uses of Parser in org.apache.juneau.restMethods 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.clientMethods in org.apache.juneau.rest.client with parameters of type ParserModifier and TypeMethodDescriptionprotected RestResponseRestClient.createResponse(RestRequest request, HttpResponse httpResponse, Parser parser) Creates aRestResponseobject from the specifiedHttpResponseobject.<T> TRestClient.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> TRestClient.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.protectedRestResponse(RestClient client, RestRequest request, HttpResponse response, Parser parser) Constructor.
- 
Uses of Parser in org.apache.juneau.rest.httppartMethods 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.mockMethods in org.apache.juneau.rest.mock with parameters of type ParserModifier and TypeMethodDescriptionprotected MockRestResponseMockRestClient.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.uonSubclasses of Parser in org.apache.juneau.uonModifier and TypeClassDescriptionclassParses UON (a notation for URL-encoded query parameter values) text into POJO models.static classDefault parser, decoding.
- 
Uses of Parser in org.apache.juneau.urlencodingSubclasses of Parser in org.apache.juneau.urlencodingModifier and TypeClassDescriptionclassParses URL-encoded text into POJO models.
- 
Uses of Parser in org.apache.juneau.xmlSubclasses of Parser in org.apache.juneau.xmlModifier and TypeClassDescriptionclassParses text generated by theXmlSerializerclass back into a POJO model.