Uses of Class
com.fasterxml.jackson.jr.ob.JSONObjectException
-
Packages that use JSONObjectException Package Description com.fasterxml.jackson.jr.ob com.fasterxml.jackson.jr.ob.api com.fasterxml.jackson.jr.ob.impl -
-
Uses of JSONObjectException in com.fasterxml.jackson.jr.ob
Methods in com.fasterxml.jackson.jr.ob that return JSONObjectException Modifier and Type Method Description static JSONObjectExceptionJSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, java.lang.String msg)static JSONObjectExceptionJSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, java.lang.String msg, java.lang.Object... args)static JSONObjectExceptionJSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, java.lang.Throwable problem, java.lang.String msg, java.lang.Object... args)static JSONObjectExceptionJSONObjectException. fromUnexpectedIOE(java.io.IOException src)Factory method used when "upgrading" anIOExceptionintoJSONObjectException: usually only needed to comply with a signature.static JSONObjectExceptionJSONObjectException. wrapWithPath(java.lang.Throwable src, JSONObjectException.Reference ref)Method that can be called to either create a new JsonMappingException (if underlying exception is not a JsonMappingException), or augment given exception with given path/reference information.static JSONObjectExceptionJSONObjectException. wrapWithPath(java.lang.Throwable src, java.lang.Object refFrom, int index)Method that can be called to either create a new JsonMappingException (if underlying exception is not a JsonMappingException), or augment given exception with given path/reference information.static JSONObjectExceptionJSONObjectException. wrapWithPath(java.lang.Throwable src, java.lang.Object refFrom, java.lang.String refFieldName)Method that can be called to either create a new JsonMappingException (if underlying exception is not a JsonMappingException), or augment given exception with given path/reference information.Methods in com.fasterxml.jackson.jr.ob with parameters of type JSONObjectException Modifier and Type Method Description protected <R> RValueIterator. _handleMappingException(JSONObjectException e)Methods in com.fasterxml.jackson.jr.ob that throw JSONObjectException Modifier and Type Method Description protected com.fasterxml.jackson.core.JsonParserJSON. _parser(java.lang.Object source)ValueIterator<java.lang.Object>JSON. anySequenceFrom(java.lang.Object source)Method for creatingValueIteratorfor reading streaming JSON content (specifically line-delimited and concatenated variants); individual values are bound as "Simple" type:Map,List,String,NumberorBoolean.java.lang.Object[]JSON. arrayFrom(java.lang.Object source)<T> T[]JSON. arrayOfFrom(java.lang.Class<T> type, java.lang.Object source)byte[]JSON. asBytes(java.lang.Object value)java.lang.StringJSON. asString(java.lang.Object value)<T> TJSON. beanFrom(java.lang.Class<T> type, java.lang.Object source)<T> ValueIterator<T>JSON. beanSequenceFrom(java.lang.Class<T> type, java.lang.Object source)Method for creatingValueIteratorfor reading streaming JSON content (specifically line-delimited and concatenated variants); individual values are bound to specific Bean (POJO) type.JSONComposer<byte[]>JSON. composeBytes()JSONComposer<java.lang.String>JSON. composeString()JSONComposer<java.io.OutputStream>JSON. composeTo(java.io.File f)JSONComposer<java.io.OutputStream>JSON. composeTo(java.io.OutputStream out)JSONComposer<java.io.OutputStream>JSON. composeTo(java.io.Writer w)JSONComposer<java.io.OutputStream>JSON. composeUsing(com.fasterxml.jackson.core.JsonGenerator gen)com.fasterxml.jackson.core.JsonParserJSON. createParser(java.lang.Object source)Factory method for opening aJsonParserto read content from one of following supported sourcesInputStreamReaderbyte[]char[]String/CharSequenceURLFilejava.util.List<java.lang.Object>JSON. listFrom(java.lang.Object source)<T> java.util.List<T>JSON. listOfFrom(java.lang.Class<T> type, java.lang.Object source)java.util.Map<java.lang.String,java.lang.Object>JSON. mapFrom(java.lang.Object source)<T> java.util.Map<java.lang.String,T>JSON. mapOfFrom(java.lang.Class<T> type, java.lang.Object source)Read method for reading aMapoftype(usually POJO) values.<T extends com.fasterxml.jackson.core.TreeNode>
TJSON. treeFrom(java.lang.Object source)Method for reading content as a JSON Tree (of type that configuredTreeCodec, seeJSON.with(TreeCodec)) supports.<T extends com.fasterxml.jackson.core.TreeNode>
ValueIterator<T>JSON. treeSequenceFrom(java.lang.Object source)Method for creatingValueIteratorfor reading streaming JSON content (specifically line-delimited and concatenated variants); individual values are bound as JSON Trees(of type that configuredTreeCodec, seeJSON.with(TreeCodec)) supports.voidJSON. write(java.lang.Object value, com.fasterxml.jackson.core.JsonGenerator gen)voidJSON. write(java.lang.Object value, java.io.File f)voidJSON. write(java.lang.Object value, java.io.OutputStream out)voidJSON. write(java.lang.Object value, java.io.Writer w) -
Uses of JSONObjectException in com.fasterxml.jackson.jr.ob.api
Methods in com.fasterxml.jackson.jr.ob.api that throw JSONObjectException Modifier and Type Method Description java.util.Map<java.lang.Object,java.lang.Object>MapBuilder. emptyMap()Specialized method that is called when an empty list needs to be constructed; this may be a new list, or an immutable shared List, depending on implementation.java.util.Map<java.lang.Object,java.lang.Object>MapBuilder. singletonMap(java.lang.Object key, java.lang.Object value)Specialized method that is called when an empty list needs to be constructed; this may be a new list, or an immutable shared List, depending on implementation. -
Uses of JSONObjectException in com.fasterxml.jackson.jr.ob.impl
Methods in com.fasterxml.jackson.jr.ob.impl that return JSONObjectException Modifier and Type Method Description protected JSONObjectExceptionJSONAsObjectCodec. _noTypeReference()protected JSONObjectExceptionMapReader. _reportProblem(com.fasterxml.jackson.core.JsonParser p)Methods in com.fasterxml.jackson.jr.ob.impl that throw JSONObjectException Modifier and Type Method Description protected voidJSONAsObjectCodec. _checkResultType(java.lang.Class<?> valueType, java.lang.Object ob)protected com.fasterxml.jackson.core.TreeCodecJSONReader. _treeCodec()
-